Files
codexis/db/models.go
2026-04-15 08:33:38 -04:00

37 lines
540 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 FileContent struct {
FileID string
Content string
}
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
}