billing.go 192 B

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