I think the following structure is reasonable for an application which has multiple components: ``` model Foo { } @serviceName("foo") interface MyService { @post op create(foo: Foo): Foo; } ```
I think the following structure is reasonable for an application which has multiple components: