11 lines
236 B
Go
11 lines
236 B
Go
|
package consts
|
||
|
|
||
|
const (
|
||
|
ServiceTokenPrefix = "hvs."
|
||
|
BatchTokenPrefix = "hvb."
|
||
|
RecoveryTokenPrefix = "hvr."
|
||
|
LegacyServiceTokenPrefix = "s."
|
||
|
LegacyBatchTokenPrefix = "b."
|
||
|
LegacyRecoveryTokenPrefix = "r."
|
||
|
)
|