mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Format code
This commit is contained in:
parent
878dd6912e
commit
530738cfe9
2 changed files with 6 additions and 2 deletions
|
@ -60,7 +60,11 @@ pub fn load_routes(app: &mut tide::App<Data>) {
|
|||
});
|
||||
|
||||
router.at("/synonym").nest(|router| {
|
||||
router.at("/").get(synonym::list).post(synonym::create).delete(synonym::clear);
|
||||
router
|
||||
.at("/")
|
||||
.get(synonym::list)
|
||||
.post(synonym::create)
|
||||
.delete(synonym::clear);
|
||||
|
||||
router
|
||||
.at("/:synonym")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue