包含Go API项目的所有源代码、配置文件、Docker配置、文档和前端资源 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
359 B
Go
17 lines
359 B
Go
package model
|
|
|
|
type Setup struct {
|
|
ID uint `json:"id" gorm:"primaryKey"`
|
|
Version string `json:"version" gorm:"type:varchar(50);not null"`
|
|
InitializedAt int64 `json:"initialized_at" gorm:"type:bigint;not null"`
|
|
}
|
|
|
|
func GetSetup() *Setup {
|
|
var setup Setup
|
|
err := DB.First(&setup).Error
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return &setup
|
|
}
|