accountserver/service/service.go

10 lines
102 B
Go
Raw Normal View History

2024-08-19 13:18:59 +02:00
package service
type Service struct {
}
func NewService() *Service {
s := new(Service)
return s
}