refactor: python to go

This commit is contained in:
Cipher Vance
2025-11-15 19:57:35 -06:00
parent 778533b655
commit dcf48c94fd
31 changed files with 2990 additions and 554 deletions

15
internal/models/models.go Normal file
View File

@@ -0,0 +1,15 @@
package models
import "time"
type Subscriber struct {
ID int
Email string
}
type Newsletter struct {
ID int
Subject string
Body string
SentAt time.Time
}