2016-05-07 14:26:03 -04:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
type Account interface {
|
2016-07-24 17:22:46 -04:00
|
|
|
Equals(Account) bool
|
2016-05-07 14:26:03 -04:00
|
|
|
}
|
2016-09-17 18:41:21 -04:00
|
|
|
|
|
|
|
type AsAccount interface {
|
|
|
|
AsAccount() (Account, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type NewAccountFactory func() AsAccount
|