accountserver/service/account.go

9 lines
219 B
Go
Raw Normal View History

2024-08-19 13:54:46 +02:00
package service
2024-08-19 14:15:44 +02:00
type CreateAccountInput struct{}
// CreateAccount creates an account, returns nil if successful or error if not
func (s *Service) CreateAccount(in *CreateAccountInput) error {
panic("implement me")
}