Version Creation (#47)

* Creation Stuff

* Make it work

* Response structs + Mod ID validation

* Run code formatter

* Push local changes

* Finish up version creation - fix comments, impl file creation

* fix: Add sqlx prepare data

Co-authored-by: Aeledfyr <aeledfyr@gmail.com>
This commit is contained in:
Geometrically
2020-08-12 11:05:49 -07:00
committed by GitHub
parent 7e2f1c9a8b
commit e2bf474332
8 changed files with 589 additions and 234 deletions

View File

@@ -2,8 +2,11 @@ mod index;
mod mod_creation;
mod mods;
mod not_found;
mod version_creation;
pub use self::index::index_get;
pub use self::mod_creation::mod_create;
pub use self::mods::mod_search;
pub use self::not_found::not_found;
pub use self::version_creation::upload_file_to_version;
pub use self::version_creation::version_create;