dust/examples/option.ds
2023-12-26 19:33:19 -05:00

7 lines
129 B
Plaintext

create_user = (fn email <string>, name <option(string)>) <map> {
{
email = email
username = (either_or username email)
}
}