11 lines
279 B
Go
11 lines
279 B
Go
|
package usecase
|
||
|
|
||
|
import "code.30cm.net/digimon/app-cloudep-permission-server/pkg/domain/token"
|
||
|
|
||
|
// Additional 系統在 Token 當中的附加資訊
|
||
|
type Additional interface {
|
||
|
Set(key token.Additional, val string)
|
||
|
Get(key token.Additional) string
|
||
|
GetAll() map[string]string
|
||
|
}
|