From DiscoverMeteor pratice, Meteor Method is defined in collection folder, which is shared between client and server. The reason is to enable client latency simulation which would give instant effect without having to wait for server respond.
However in my case, I want to hide the detail of my Method implementation from the client. First, I don't feel comfortable sharing server logic to client. Second, the Method would be quite big.
In that case, where should I put Method definition? Server
folder, I guess? If yes, then how my client get access to that Method?