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:
@@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
pub mod packages;
|
pub mod packages;
|
||||||
pub mod release;
|
pub mod release;
|
||||||
|
pub mod release_attachment;
|
||||||
10
src/api/release_attachment.rs
Normal file
10
src/api/release_attachment.rs
Normal 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(){}
|
||||||
|
|
||||||
Reference in New Issue
Block a user