mirror of
https://github.com/1f349/site-hosting.git
synced 2025-01-21 06:36:33 +00:00
24 lines
434 B
Go
24 lines
434 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.25.0
|
|
|
|
package database
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Branch struct {
|
|
ID int64 `json:"id"`
|
|
Domain string `json:"domain"`
|
|
Branch string `json:"branch"`
|
|
LastUpdate time.Time `json:"last_update"`
|
|
Enable bool `json:"enable"`
|
|
}
|
|
|
|
type Site struct {
|
|
ID int64 `json:"id"`
|
|
Domain string `json:"domain"`
|
|
Token string `json:"token"`
|
|
}
|