diff options
Diffstat (limited to 'src/handlers/json_ld.rs')
| -rw-r--r-- | src/handlers/json_ld.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/handlers/json_ld.rs b/src/handlers/json_ld.rs new file mode 100644 index 0000000..07148dc --- /dev/null +++ b/src/handlers/json_ld.rs @@ -0,0 +1,14 @@ +use axum::extract::Json; +use serde_json::{json, Value}; + +pub async fn pronoun_set() -> Json<Value> { + Json(json!({ + "@type": "PronounSet", + "nominative": "string", + "accusative": "string", + "possessiveDeterminer": "string", + "possessive": "string", + "reflexive": "string", + "singular": "boolean", + })) +} |
