Initial commit

This commit is contained in:
2020-12-21 15:56:56 +01:00
commit d9a6c14041
50 changed files with 10235 additions and 0 deletions

12
internal/model/sms.go Normal file
View File

@ -0,0 +1,12 @@
package model
import "time"
type SMS struct {
ID int `storm:"id,increment"`
Body string
Seen bool `storm:"index"`
Recipient string
SentAt time.Time
Metadata map[string]interface{}
}