12 lines
168 B
Go
Raw Normal View History

2016-05-07 20:26:03 +02:00
package protocol
type Account interface {
2016-07-24 23:22:46 +02:00
Equals(Account) bool
2016-05-07 20:26:03 +02:00
}
2016-09-18 00:41:21 +02:00
type AsAccount interface {
AsAccount() (Account, error)
}
type NewAccountFactory func() AsAccount