feat: Implement source management with file upload, display, and deletion functionality on a new Sources page, backed by new backend models and handlers.

This commit is contained in:
2025-12-20 15:55:16 +05:30
parent 89815e7e21
commit d9f6694b2f
19 changed files with 612 additions and 15 deletions

View File

@@ -4,8 +4,10 @@ pub mod biomarker;
pub mod biomarker_category;
pub mod biomarker_entry;
pub mod biomarker_reference_rule;
pub mod source;
pub use biomarker::Entity as Biomarker;
pub use biomarker_category::Entity as BiomarkerCategory;
pub use biomarker_entry::Entity as BiomarkerEntry;
pub use biomarker_reference_rule::Entity as BiomarkerReferenceRule;
pub use source::Entity as Source;