bluebell/database/models.go

16 lines
270 B
Go
Raw Normal View History

2024-08-10 13:28:30 +01:00
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.25.0
package database
import ()
type Site struct {
ID int32 `json:"id"`
2024-08-16 16:48:50 +01:00
Slug string `json:"slug"`
2024-08-10 13:28:30 +01:00
Domain string `json:"domain"`
Token string `json:"token"`
2024-08-16 16:48:50 +01:00
Enable bool `json:"enable"`
2024-08-10 13:28:30 +01:00
}