core: Remove old placeholder files

This commit is contained in:
John Brooks 2016-10-15 19:17:54 -06:00
parent bb530cfc2f
commit 70af42e39e
4 changed files with 0 additions and 51 deletions

View File

@ -1,7 +0,0 @@
package core
type ChatChannel struct {
}
func (chat *ChatChannel) SendMessage(text string) {
}

View File

@ -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")
}

View File

@ -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
}

View File

@ -1,4 +0,0 @@
package core
type TorConfiguration struct {
}