initial commit
This commit is contained in:
31
db/models.go
Normal file
31
db/models.go
Normal file
@@ -0,0 +1,31 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user