mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-07 00:37:36 +00:00
15 lines
427 B
Go
15 lines
427 B
Go
package license
|
|
|
|
import pkglicensing "github.com/rcourtman/pulse-go-rewrite/pkg/licensing"
|
|
|
|
const (
|
|
LicenseFileName = pkglicensing.LicenseFileName
|
|
PersistentKeyFileName = pkglicensing.PersistentKeyFileName
|
|
)
|
|
|
|
type Persistence = pkglicensing.Persistence
|
|
type PersistedLicense = pkglicensing.PersistedLicense
|
|
|
|
func NewPersistence(configDir string) (*Persistence, error) {
|
|
return pkglicensing.NewPersistence(configDir)
|
|
}
|