Still missing a UI and we do not have session management just yet, but the workflow of calling the Google API's and creating/finding users is working with the current structure.
12 lines
277 B
Go
12 lines
277 B
Go
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
|
|
}
|