init: 初始化项目

This commit is contained in:
0264408
2026-03-10 16:26:48 +08:00
commit 57e0ef2cf6
79 changed files with 8943 additions and 0 deletions

14
internal/release/model.go Normal file
View File

@@ -0,0 +1,14 @@
package release
import "time"
type Release struct {
ID uint `gorm:"primaryKey"`
AppID string `gorm:"not null"`
Version string `gorm:"not null"`
Notes string
Channel string
PubDate time.Time
CreatedAt time.Time
UpdatedAt time.Time
}