Remove unused files

This commit is contained in:
nxshock 2019-07-20 22:11:40 +05:00
parent f07dfc3a33
commit 4394856f24
2 changed files with 0 additions and 23 deletions

View File

@ -1,8 +0,0 @@
package models
type VisibilityType string
const (
VisibilityTypePrivate = "private"
VisibilityTypePublic = "public"
)

View File

@ -1,15 +0,0 @@
package models
import (
common "github.com/nxshock/signaller/internal/models/common"
)
// https://matrix.org/docs/spec/client_server/r0.4.0.html#get-matrix-client-r0-account-whoami
type WhoAmIReply struct {
UserID string `json:"user_id"` // Required. The user id that owns the access token.
}
// https://matrix.org/docs/spec/client_server/r0.4.0.html#get-matrix-client-r0-rooms-roomid-members
type MembersReply struct {
Chunk []common.MemberEvent `json:"chunk"`
}