diff options
Diffstat (limited to 'src/routes/artists.rs')
-rw-r--r-- | src/routes/artists.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/routes/artists.rs b/src/routes/artists.rs new file mode 100644 index 0000000..79a2ab1 --- /dev/null +++ b/src/routes/artists.rs @@ -0,0 +1,21 @@ +use poem::handler; + +#[handler] +pub async fn post() { + todo!() +} + +#[handler] +pub async fn get() { + todo!() +} + +#[handler] +pub async fn put() { + todo!() +} + +#[handler] +pub async fn delete() { + todo!() +} |