cleanup: remove unused guild stuff (#156)

This commit is contained in:
Sainan 2024-05-04 16:12:00 +02:00 committed by GitHub
parent d07e99f0c9
commit 477f678244
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 9 deletions

View File

@ -1,4 +1,4 @@
import { IGuild, IDatabaseGuild } from "@/src/types/guildTypes";
import { IGuild } from "@/src/types/guildTypes";
import { model, Schema } from "mongoose";
import { toOid } from "@/src/helpers/inventoryHelpers";

View File

@ -5,14 +5,6 @@ export interface IGuild {
Name: string;
}
export interface IDatabaseGuild extends IGuild {
_id: Types.ObjectId;
}
export interface IGuildResponse extends IGuild {
_id: IOid;
}
export interface ICreateGuildRequest {
guildName: string;
}