initial commit

This commit is contained in:
Gitea
2023-11-21 15:07:54 +03:00
commit 9bc56666a0
11 changed files with 349 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// Package adapters aggregates all external services and it's implementations.
package adapters
type Services struct{}
func NewServices() Services {
return Services{}
}