ARO-RP/pkg/cluster/billing.go

13 строки
248 B
Go
Исходник Обычный вид История

2020-08-24 13:32:21 +03:00
package cluster
// Copyright (c) Microsoft Corporation.
// Licensed under the Apache License 2.0.
import (
"context"
)
2020-09-26 00:00:51 +03:00
func (m *manager) ensureBillingRecord(ctx context.Context) error {
return m.billing.Ensure(ctx, m.doc, m.subscriptionDoc)
}