Removed snipe command

This commit is contained in:
2024-02-24 12:23:39 +01:00
parent 160c3b5348
commit dc126b6371
3 changed files with 0 additions and 120 deletions

View File

@@ -1,11 +0,0 @@
import { model, Schema } from "mongoose"
const snipeCacheSchema = new Schema({
_id: Schema.Types.ObjectId,
userid: { type: String, required: true },
channelid: { type: String, required: true },
data: { type: Object, required: true },
date: { type: Date, default: Date.now(), expires: 600 }
})
export default model("snipeCache", snipeCacheSchema, "snipeCache")