Add release_attachment module

For whatever reason, releases and release attachments are separate modules in the Gitea codebase. I'm going to continue mirroring that structure for now.
This commit is contained in:
2025-05-27 23:02:27 -05:00
parent 36adabb4fd
commit e19602925e
2 changed files with 12 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
pub mod packages;
pub mod release;
pub mod release;
pub mod release_attachment;

View File

@@ -0,0 +1,10 @@
pub fn check_release_match_repo(){}
pub fn get_release_attachment(){}
pub fn list_release_attachments(){
todo!();
}
pub fn create_release_attachment(){}
pub fn edit_release_attachment(){}
pub fn delete_release_attachment(){}