mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-23 06:37:57 +00:00
22 lines
550 B
Go
22 lines
550 B
Go
package license
|
|
|
|
type FeatureType string
|
|
|
|
const (
|
|
// Accounts.
|
|
|
|
// FeatureTypeUnlimitedAccounts allows the user to create unlimited accounts.
|
|
FeatureTypeUnlimitedAccounts FeatureType = "unlimited_accounts"
|
|
|
|
// Customization.
|
|
|
|
// FeatureTypeCustomStyle allows the user to customize the style.
|
|
FeatureTypeCustomeStyle FeatureType = "custom_style"
|
|
)
|
|
|
|
// FeatureMatrix is a matrix of features in [Free, Pro].
|
|
var FeatureMatrix = map[FeatureType][2]bool{
|
|
FeatureTypeUnlimitedAccounts: {false, true},
|
|
FeatureTypeCustomeStyle: {false, true},
|
|
}
|