bitloops-language
bitloops-language copied to clipboard
Service port example
Extend service port documentation with an example. One example based on the Todo could be:
Struct SendEmailRequest {
string origin;
string destination;
string content;
}
ServicePort EmailServicePort {
send(email: SendEmailRequest): (OK(void),Errors());
}