blob: 66253e145352e3bc637014cd51975c1c6111fe91 [file] [log] [blame]
module etch.cbinding.test
service helloworld {
struct user (
int id,
string name
)
exception UserUnknownException (
string mes
)
@Direction(Server)
string say_hello(user to_whom) throws UserUnknownException
}