diff --git a/core/chatchannel.go b/core/chatchannel.go deleted file mode 100644 index 3d36d68..0000000 --- a/core/chatchannel.go +++ /dev/null @@ -1,7 +0,0 @@ -package core - -type ChatChannel struct { -} - -func (chat *ChatChannel) SendMessage(text string) { -} diff --git a/core/inboundcontactrequest.go b/core/inboundcontactrequest.go deleted file mode 100644 index af13a23..0000000 --- a/core/inboundcontactrequest.go +++ /dev/null @@ -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") -} diff --git a/core/outboundcontactrequest.go b/core/outboundcontactrequest.go deleted file mode 100644 index 19da38d..0000000 --- a/core/outboundcontactrequest.go +++ /dev/null @@ -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 -} diff --git a/core/torconfiguration.go b/core/torconfiguration.go deleted file mode 100644 index 3ede44e..0000000 --- a/core/torconfiguration.go +++ /dev/null @@ -1,4 +0,0 @@ -package core - -type TorConfiguration struct { -}