Chore: project init

This commit is contained in:
2026-02-24 13:18:43 +09:00
commit 3345549051
23 changed files with 788 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package announcement
import "gorm.io/gorm"
type Announcement struct {
gorm.Model
Title string `gorm:"not null"`
Content string `gorm:"type:text;not null"`
}