billing.go 235 B

123456789
  1. package billing
  2. // Manager contains methods for managing billing for a project
  3. type Manager struct {
  4. StripeClient StripeClient
  5. StripeConfigLoaded bool
  6. MetronomeClient MetronomeClient
  7. MetronomeConfigLoaded bool
  8. }