This commit is contained in:
2024-08-19 13:18:59 +02:00
parent 11822c6a36
commit 7548c9a304
11 changed files with 189 additions and 0 deletions

9
service/service.go Normal file
View File

@ -0,0 +1,9 @@
package service
type Service struct {
}
func NewService() *Service {
s := new(Service)
return s
}