diff options
author | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-14 18:35:22 -0600 |
---|---|---|
committer | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-14 18:35:22 -0600 |
commit | 6bcb3620d8be2f3bcfe72432d17955827894bb6e (patch) | |
tree | e2429d5791ab1cdb90dce7c76e9241e2c7405cd0 /src/db | |
parent | 19b851c71ee8c7499046936771446e6ae6e60c16 (diff) | |
download | tosin-6bcb3620d8be2f3bcfe72432d17955827894bb6e.tar.gz tosin-6bcb3620d8be2f3bcfe72432d17955827894bb6e.zip |
make backend more explicit
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/backend.rs | 5 | ||||
-rw-r--r-- | src/db/mod.rs | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/db/backend.rs b/src/db/backend.rs new file mode 100644 index 0000000..5ae4de2 --- /dev/null +++ b/src/db/backend.rs @@ -0,0 +1,5 @@ +pub enum DbBackend { + Sqlite { + db_file: &'static str, + } +} diff --git a/src/db/mod.rs b/src/db/mod.rs index c446ac8..b6528f5 100644 --- a/src/db/mod.rs +++ b/src/db/mod.rs @@ -1 +1,2 @@ +pub mod backend; pub mod models; |