Return symbols of generated functions

This commit is contained in:
Akira Tempaku 2025-04-20 22:55:54 +09:00
parent 9a03693807
commit 47c182ff4b
Signed by: paku
GPG key ID: 5B4E8402BCC50607
2 changed files with 21 additions and 16 deletions

View file

@ -25,7 +25,7 @@ This will generate the following functions:
| Function Name | Arguments | Description |
|---------------|-----------|-------------|
| `get-article-list` | (&key `query`) | Get a list of articles. |
| `get-article-list-detail` | (`id`, &key `query`) | Get details of a specific article by ID. |
| `get-article-detail` | (`id`, &key `query`) | Get details of a specific article by ID. |
| `create-article` | (`content`, &key `query`) | Create a new article with the given content. |
| `update-article` | (`id`, `content`) | Update an existing article by its ID with new content. |
| `delete-article` | (`id`) | Delete an article by its ID. |