aboutsummaryrefslogtreecommitdiff
path: root/types/mailbox.go
diff options
context:
space:
mode:
Diffstat (limited to 'types/mailbox.go')
-rw-r--r--types/mailbox.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/types/mailbox.go b/types/mailbox.go
deleted file mode 100644
index adf1ce5..0000000
--- a/types/mailbox.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package types
-
-import "dove/models"
-
-type Mailbox struct {
- Address string
-}
-
-type CreateMailboxRequest struct {
- Address string `form:"address"`
- UserID uint `form:"user_id"`
-}
-
-type MailboxFormResponse struct {
- Users []models.User `json:"users"`
-}