mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-11 04:43:59 +00:00
13 lines
326 B
Go
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)
|
|
}
|