aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2017-10-04 16:04:03 +0200
committerJokler <jokler.contact@gmail.com>2017-10-04 16:04:03 +0200
commit02f00d5d8890fe32c99c0a4b32e96c9161c345cb (patch)
treee6f4de0a5732aa910921bf45d876c6cf3749c42f /src/lib.rs
parenta33a3cc143eb09d1fc9114ba548ec0faf22d990a (diff)
downloadfrippy-02f00d5d8890fe32c99c0a4b32e96c9161c345cb.tar.gz
frippy-02f00d5d8890fe32c99c0a4b32e96c9161c345cb.zip
Adjust formatting with cargo fmtv0.1.0
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ed7e2b0..5f9bcaa 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,8 +16,7 @@ pub fn run() {
let server = IrcServer::new("config.toml").unwrap();
server.identify().unwrap();
- let plugins: Vec<Arc<Mutex<Plugin>>> =
- vec![Arc::new(Mutex::new(plugins::emoji::Emoji::new()))];
+ let plugins: Vec<Arc<Mutex<Plugin>>> = vec![Arc::new(Mutex::new(plugins::emoji::Emoji::new()))];
server
.for_each_incoming(|message| {