aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-06-30 09:13:18 +0200
committerSébastien Dailly <sebastien@dailly.me>2025-06-30 09:13:18 +0200
commit0f509663c78ada3a7d7bbba3da721b99c32ef9e0 (patch)
tree9d15ae2196803871625e6b9bc490351659bbd90f /services
parent5ce1244ee92e6681659b3a20288b2c7c2dc6f736 (diff)
Added a radio-button element and added it with an examplebulma
Diffstat (limited to 'services')
-rw-r--r--services/capitalize.ml15
1 files changed, 15 insertions, 0 deletions
diff --git a/services/capitalize.ml b/services/capitalize.ml
new file mode 100644
index 0000000..a7ddf32
--- /dev/null
+++ b/services/capitalize.ml
@@ -0,0 +1,15 @@
+(** Service capitalizing a word *)
+
+open Ppx_yojson_conv_lib.Yojson_conv.Primitives
+
+type request = { value : string } [@@deriving yojson]
+type response = { value : string } [@@deriving yojson]
+
+(** The method used in the service *)
+let method_ = Services.POST
+
+type placeholders = unit
+(** No placeholder here in the request url *)
+
+(** The path to the service, matching the type parameters *)
+let path = Path.(T1 (Fixed (V_string.v "api/capitalize")))