removed old fluff

This commit is contained in:
shockrah 2020-01-29 22:40:57 -08:00
parent 320310e680
commit 857885789f
3 changed files with 0 additions and 27 deletions

View File

View File

@ -1,15 +0,0 @@
#[derive(serialize)]
struct TextMessage {
// Not all of these fields are going to necessarily be filled
// More specifically the server field
body: String,
client: Client,
date: String,
server: ServerTag,
}
#[derive(serialize)]
struct MessageChunk {
messages: Vector<TextMessage>,
channel: Channel,
}

View File

@ -1,12 +0,0 @@
use std::vec::{Vector};
#[derive(serialize)]
struct GETTextChannel {
// only 100 messages per channel that we ask for
messages: MessageChunk,
}
struct Server {
domain: String, // Unique identifier for us
name: String, // Custom display name for the meme
}