From 4f9b8a2c13caba182ff4fce6b9962cc3c89c29c1 Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 9 Jun 2020 22:56:53 +0200 Subject: [PATCH] use idea --- .idea/gopherbridge.iml | 12 ++++ .idea/modules.xml | 8 +++ .idea/vcs.xml | 6 ++ .idea/workspace.xml | 145 +++++++++++++++++++++++++++++++++++++++++ src/configuration.rs | 2 +- 5 files changed, 172 insertions(+), 1 deletion(-) create mode 100644 .idea/gopherbridge.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/gopherbridge.iml b/.idea/gopherbridge.iml new file mode 100644 index 0000000..9b4cf84 --- /dev/null +++ b/.idea/gopherbridge.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..0b44200 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..8202fda --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1591077940933 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/configuration.rs b/src/configuration.rs index 923bf10..95307b6 100644 --- a/src/configuration.rs +++ b/src/configuration.rs @@ -15,7 +15,7 @@ pub struct Settings { pub foreground: bool, pub listen: String, pub plugins: Vec, - pub port: i32, + pub port: i32 } impl Settings {