blob: ef14e6486a5166b1bfbb816abad1c84f02ced0e7 [file] [log] [blame]
package browspr
import(
"v.io/core/veyron/services/wsprd/account"
)
type StartMessage struct {
Identityd string
IdentitydBlessingRoot blessingRoot
Proxy string
NamespaceRoot string
LogLevel int32
LogModule string
}
// Copied from
// v.io/core/veyron/services/identity/handlers/blessing_root.go, since
// depcop prohibits importing that package.
type blessingRoot struct {
Names []string
PublicKey string
}
type AssociateAccountMessage struct {
Account string
Origin string
Caveats []account.Caveat
}
type CreateAccountMessage struct {
Token string
}
type CleanupMessage struct {
InstanceId int32
}
type OriginHasAccountMessage struct {
Origin string
}
type GetAccountsMessage struct {}