status-protocol-go/chat.go

10 lines
132 B
Go
Raw Normal View History

2019-07-16 10:43:07 +00:00
package statusproto
import "crypto/ecdsa"
type Chat interface {
ID() string
PublicName() string
PublicKey() *ecdsa.PublicKey
}