Initial Commit

slip slop
This commit is contained in:
Ian Keane 2026-06-09 15:07:08 -04:00
commit 064e672ab7
61 changed files with 3504 additions and 0 deletions

13
ain/notes/create.ain Normal file
View file

@ -0,0 +1,13 @@
# Add a note to a tune
# ain ain/base.ain ain/notes/create.ain --vars ID=1
[Host]
/tunes/${ID}/notes
[Method]
POST
[Body]
{
"note": "tricky B part — watch the timing"
}

8
ain/notes/delete.ain Normal file
View file

@ -0,0 +1,8 @@
# Delete a note
# ain ain/base.ain ain/notes/delete.ain --vars ID=1 NOTE_ID=2
[Host]
/tunes/${ID}/notes/${NOTE_ID}
[Method]
DELETE

8
ain/notes/list.ain Normal file
View file

@ -0,0 +1,8 @@
# List all notes for a tune
# ain ain/base.ain ain/notes/list.ain --vars ID=1
[Host]
/tunes/${ID}/notes
[Method]
GET

13
ain/notes/update.ain Normal file
View file

@ -0,0 +1,13 @@
# Update a note
# ain ain/base.ain ain/notes/update.ain --vars ID=1 NOTE_ID=2
[Host]
/tunes/${ID}/notes/${NOTE_ID}
[Method]
PATCH
[Body]
{
"note": "updated note text"
}