| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2023 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use darkfi::event_graph::EventMsg;
- use darkfi_serial::{SerialDecodable, SerialEncodable};
- #[derive(SerialEncodable, SerialDecodable, Clone, Debug)]
- pub struct PrivMsgEvent {
- pub nick: String,
- pub msg: String,
- pub target: String,
- }
- impl std::string::ToString for PrivMsgEvent {
- fn to_string(&self) -> String {
- format!(":{}!anon@dark.fi PRIVMSG {} :{}\r\n", self.nick, self.target, self.msg)
- }
- }
- impl EventMsg for PrivMsgEvent {
- fn new() -> Self {
- Self {
- nick: "root".to_string(),
- msg: "Let there be dark".to_string(),
- target: "root".to_string(),
- }
- }
- }
|