aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs30
-rw-r--r--src/main.rs26
2 files changed, 56 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..e4ca76d
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,30 @@
+/*
+ oslobike - find free bikes in Oslo.
+ Copyright (C) 2019 Harald Eilertsen <haraldei@anduin.net>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+
+pub struct Api {
+}
+
+impl Api {
+ pub fn new(_api_key: String) -> Api {
+ Api { }
+ }
+
+ pub fn stations(&self) -> String {
+ String::from("Hey, bop - alula!")
+ }
+}
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..3e378d1
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,26 @@
+/*
+ oslobike - find free bikes in Oslo.
+ Copyright (C) 2019 Harald Eilertsen <haraldei@anduin.net>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+*/
+
+use dotenv;
+use oslobike;
+
+fn main() {
+ let api_key = dotenv::var("OSLOBIKE_APIKEY").expect("No API key defined!");
+ let api = oslobike::Api::new(api_key);
+ println!("{}", api.stations());
+}