You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This is the echo module.
module echo {
config default String
config secret String
database postgres echo
// An echo request.
data EchoRequest {
name String? +alias json "name"
}
data EchoResponse {
message String +alias json "message"
}
// Echo returns a greeting with the current time.
verb echo(echo.EchoRequest) echo.EchoResponse
+calls time.time
}
No description provided.
The text was updated successfully, but these errors were encountered: