package domain import ( domainAuth "github.com/haydenhargreaves/Potion/internal/domain/auth" domainUser "github.com/haydenhargreaves/Potion/internal/domain/user" ) type InjectedDependencies struct { UserService domainUser.UserService AuthService domainAuth.AuthService }