I want to define the server router(input\output\meta) in a separate package from the server package
I want to have a package that will contain the types I use + the router definition, another for the server itself(will use the router definition like an interface),
and lastly the client package which ill only need to import the types package to work
is this possible?