core: Remove old placeholder files
This commit is contained in:
parent
bb530cfc2f
commit
70af42e39e
|
@ -1,7 +0,0 @@
|
|||
package core
|
||||
|
||||
type ChatChannel struct {
|
||||
}
|
||||
|
||||
func (chat *ChatChannel) SendMessage(text string) {
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
package core
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"time"
|
||||
)
|
||||
|
||||
type InboundContactRequest struct {
|
||||
Name string
|
||||
Address string
|
||||
Received time.Time
|
||||
}
|
||||
|
||||
func (request *InboundContactRequest) Accept() (*Contact, error) {
|
||||
return nil, errors.New("Not implemented")
|
||||
}
|
||||
|
||||
func (request *InboundContactRequest) Reject(message string) error {
|
||||
return errors.New("Not implemented")
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
package core
|
||||
|
||||
type OutboundContactRequestStatus int
|
||||
|
||||
const (
|
||||
RequestPending OutboundContactRequestStatus = iota
|
||||
RequestAcknowledged
|
||||
RequestAccepted
|
||||
RequestRejected
|
||||
RequestError
|
||||
)
|
||||
|
||||
type OutboundContactRequest struct {
|
||||
Contact
|
||||
|
||||
MyName string
|
||||
Message string
|
||||
|
||||
Status OutboundContactRequestStatus
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
package core
|
||||
|
||||
type TorConfiguration struct {
|
||||
}
|
Loading…
Reference in New Issue