summaryrefslogtreecommitdiffstats
path: root/src/routes/artworks/comments.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/artworks/comments.rs')
-rw-r--r--src/routes/artworks/comments.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/routes/artworks/comments.rs b/src/routes/artworks/comments.rs
new file mode 100644
index 0000000..dfac733
--- /dev/null
+++ b/src/routes/artworks/comments.rs
@@ -0,0 +1,11 @@
+use poem::handler;
+
+#[handler]
+pub async fn post() {
+ todo!()
+}
+
+#[handler]
+pub async fn delete() {
+ todo!()
+}