tsbonev / nharker

NHaker - an offline writing organization tool
0 stars 0 forks source link

nharker-server: separate routes into files #203

Closed tsbonev closed 5 years ago

tsbonev commented 5 years ago

The amount of routing in AppBootstrap will quickly get out of hand if the routes for the different parts of the system are not extracted into separate files. Use

Routing.name() {
 route() {
  get(){}
 }
}

//

routing {
 name()
}

to achieve this separation.