From 2bce433ce3ae5f6edbafe5731850dc2220761635 Mon Sep 17 00:00:00 2001 From: Nadja Reitzenstein Date: Mon, 9 Jan 2023 12:07:11 +0100 Subject: [PATCH] cargo fmt --- bffhd/authentication/authdb.rs | 16 ++++++++++++++++ bffhd/authentication/mod.rs | 1 + 2 files changed, 17 insertions(+) create mode 100644 bffhd/authentication/authdb.rs diff --git a/bffhd/authentication/authdb.rs b/bffhd/authentication/authdb.rs new file mode 100644 index 0000000..bd8ab1a --- /dev/null +++ b/bffhd/authentication/authdb.rs @@ -0,0 +1,16 @@ +/* + * Copyright © 2023 RLKM UG (haftungsbeschränkt). + * 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 . + */ + diff --git a/bffhd/authentication/mod.rs b/bffhd/authentication/mod.rs index 79c9f27..ed47aed 100644 --- a/bffhd/authentication/mod.rs +++ b/bffhd/authentication/mod.rs @@ -11,6 +11,7 @@ use crate::authentication::fabfire::FabFireCardKey; use crate::users::db::User; mod fabfire; +mod authdb; struct Callback { users: Users,