// 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"` }