Files
codexis/db/models.go
2026-04-10 15:31:52 -04:00

32 lines
479 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package db
import (
"database/sql"
)
type File struct {
ID int64
Path string
Language string
Package sql.NullString
Hash string
IndexedAt sql.NullTime
}
type Symbol struct {
ID int64
FileID int64
Name string
Kind string
Line int64
LineEnd sql.NullInt64
Col sql.NullInt64
ColEnd sql.NullInt64
Exported sql.NullBool
ParentID sql.NullInt64
}