aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorMario Forzanini <mf@marioforzanini.com>2024-07-18 14:02:16 +0200
committerMario Forzanini <mf@marioforzanini.com>2024-07-18 14:02:16 +0200
commit0a46824754e23fdf66c20616ec030e738016b4f7 (patch)
treef45264f8f9163aa98900a6b24534a51cfe11912c /src/main.rs
parent793b6eb25a6ef2711c2456ed9fa4d2b8f3046458 (diff)
Add README and LICENSE.HEADmaster
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 549b190..27fc7eb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,4 @@
+// See copyright information at the end of the file
pub mod stations;
use std::{process::exit, env::args, io};
use chrono::{DateTime, Local, Datelike, Timelike};
@@ -387,3 +388,23 @@ fn main() -> Result<(), io::Error> {
};
Ok(())
}
+
+/*
+ * Copyright ©️ 20224 Mario Forzanini <mf@marioforzanini.com>
+ *
+ * This file is part of trenord.
+ *
+ * This file 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 file 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 file. If not, see <https://www.gnu.org/licenses/>.
+ *
+ */