Skip to content
Snippets Groups Projects
Commit 7fb8084e authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

remove duplicate import

parent 6637b5a9
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@ import (
cryptoBroadcast "gitlab.com/elixxir/crypto/broadcast"
cryptoChannel "gitlab.com/elixxir/crypto/channel"
"gitlab.com/elixxir/crypto/message"
cryptoMessage "gitlab.com/elixxir/crypto/message"
"gitlab.com/xx_network/primitives/id"
"gitlab.com/xx_network/primitives/id/ephemeral"
)
......@@ -186,7 +185,7 @@ type Manager interface {
host string,
validUntil time.Duration, params cmix.CMIXParams,
pings []ed25519.PublicKey) (
cryptoMessage.ID, rounds.Round, ephemeral.Id, error)
message.ID, rounds.Round, ephemeral.Id, error)
////////////////////////////////////////////////////////////////////////////
// Admin Sending //
......@@ -433,7 +432,7 @@ type ExtensionMessageHandler interface {
// the sender, it will always be Delivered.
// - fromAdmin - Indicates if the message came from the channel admin.
// - hidden - Designation that the message should not be shown.
Handle(channelID *id.ID, messageID cryptoMessage.ID, messageType MessageType,
Handle(channelID *id.ID, messageID message.ID, messageType MessageType,
nickname string, content, encryptedPayload []byte,
pubKey ed25519.PublicKey, dmToken uint32, codeset uint8, timestamp,
originatingTimestamp time.Time, lease time.Duration,
......@@ -512,5 +511,5 @@ type UiCallbacks interface {
UserMuted(channelID *id.ID, pubKey ed25519.PublicKey, unmute bool)
// MessageDeleted is called every time a message is deleted.
MessageDeleted(messageID cryptoMessage.ID)
}
\ No newline at end of file
MessageDeleted(messageID message.ID)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment