diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-08 13:24:47 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-08 13:24:47 +0100 |
commit | f537f76681760e9b2b3cc095a6031ebb59ca4733 (patch) | |
tree | a498b3ed713df431c8a6f9a141626ac7d49d9000 /src/model/lib.rs | |
parent | 20c0b4ffb2ae8e250068f8bf8001b5811a6bb6f2 (diff) | |
download | garage-f537f76681760e9b2b3cc095a6031ebb59ca4733.tar.gz garage-f537f76681760e9b2b3cc095a6031ebb59ca4733.zip |
[rm-migration] Remove migration path from Garage v0.5rm-migration
Diffstat (limited to 'src/model/lib.rs')
-rw-r--r-- | src/model/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/model/lib.rs b/src/model/lib.rs index 4f20ea46..2166105f 100644 --- a/src/model/lib.rs +++ b/src/model/lib.rs @@ -1,9 +1,6 @@ #[macro_use] extern crate tracing; -// For migration from previous versions -pub(crate) mod prev; - pub mod permission; pub mod index_counter; @@ -18,4 +15,3 @@ pub mod s3; pub mod garage; pub mod helper; -pub mod migrate; |