bluebell/database/models.go

22 lines
373 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 (
"time"
)
type Branch struct {
Domain string `json:"domain"`
Branch string `json:"branch"`
LastUpdate time.Time `json:"last_update"`
Enable bool `json:"enable"`
}
2024-08-10 13:28:30 +01:00
type Site struct {
Domain string `json:"domain"`
Token string `json:"token"`
}