#I'm trying to configure a module with a
1 messages · Page 1 of 1 (latest)
type Supabase struct {
Service *Service
}
type Configer struct {
ProjectName string
SiteUrl string
PostgresPassword *Secret
JwtSecret *Secret
AnonKey *Secret
ServiceRoleKey *Secret
AdminApiKey *Secret
GitHubClientId *Secret
GitHubClientSecret *Secret
}
func (m *Supabase) DevStack(config *Configer) *Supabase {
...
}
but the codegen produces:
type SupabaseConfiger struct {
q *querybuilder.Selection
c graphql.Client
id *SupabaseConfigerID
projectName *string
siteUrl *string
}