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
765 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package db
import (
"database/sql"
)
type Exit struct {
ID int64 `db:"id" json:"id"`
To sql.NullInt64 `db:"to" json:"to"`
From sql.NullInt64 `db:"from" json:"from"`
}
type Inventory struct {
ID int64 `db:"id" json:"id"`
}
type Location struct {
ID int64 `db:"id" json:"id"`
X int64 `db:"x" json:"x"`
Y int64 `db:"y" json:"y"`
Z int64 `db:"z" json:"z"`
World int64 `db:"world" json:"world"`
}
type Observable struct {
ID int64 `db:"id" json:"id"`
Name string `db:"name" json:"name"`
Description string `db:"description" json:"description"`
}
type Pool struct {
ID int64 `db:"id" json:"id"`
Type int64 `db:"type" json:"type"`
}