Pulse/internal/license/entitlements/database_source.go
2026-03-18 16:06:30 +00:00

13 lines
326 B
Go

package entitlements
import (
"time"
pkglicensing "github.com/rcourtman/pulse-go-rewrite/pkg/licensing"
)
type DatabaseSource = pkglicensing.DatabaseSource
func NewDatabaseSource(store BillingStore, orgID string, cacheTTL time.Duration) *DatabaseSource {
return pkglicensing.NewDatabaseSource(store, orgID, cacheTTL)
}