feat: connect to db

This commit is contained in:
Rogee
2024-11-28 16:15:08 +08:00
parent 857c23408b
commit 721058b0a9
19 changed files with 706 additions and 61 deletions

View File

@@ -0,0 +1,24 @@
//
// Code generated by go-jet DO NOT EDIT.
//
// WARNING: Changes to this file may cause incorrect behavior
// and will be lost if the code is regenerated
//
package model
import (
"time"
)
type Channels struct {
ID int64 `sql:"primary_key"`
UUID int64
Username string
Title string
CreatedAt *time.Time
UpdatedAt *time.Time
Offset int64
MinID int64
ExportMedia bool
}