|
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
|
|
}
|