You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
446 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package db
import (
"database/sql"
)
type Exit struct {
ID int64
To sql.NullInt64
From sql.NullInt64
}
type Inventory struct {
ID int64
}
type Location struct {
ID int64
X int64
Y int64
Z int64
World int64
}
type Observable struct {
ID int64
Name string
Description string
}
type Pool struct {
ID int64
Type int64
}