Files
kurious/internal/infrastructure/interfaceadapters/services.go
2023-11-21 15:07:54 +03:00

9 lines
172 B
Go

// Package adapters aggregates all external services and it's implementations.
package adapters
type Services struct{}
func NewServices() Services {
return Services{}
}