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

11
internal/app/model.go Normal file
View File

@@ -0,0 +1,11 @@
package app
import "nebula/types"
type App struct {
ID string `gorm:"primaryKey" json:"id"`
Name string `gorm:"not null" json:"name"`
Description string `json:"description"`
CreatedAt types.JSONTime `json:"createdAt"`
UpdatedAt types.JSONTime `json:"updatedAt"`
}