Initial commit

This commit is contained in:
2025-05-18 23:48:22 +02:00
commit 0806e0c845
28 changed files with 2624675 additions and 0 deletions

10
service/nsq/types.go Normal file
View File

@@ -0,0 +1,10 @@
package main
type (
NSQMessage struct {
Name string `json:"name"`
ID string `json:"id"`
Date string `json:"date"`
Completed bool `json:"completed"`
}
)