Includes
Split your apps into multiple files that you can import/insert into one another.
Usage
Example
@get('/a/1'):
respond('Hello from A1')
@get('/a/2'):
respond('Hello from A2')
include module_b @get('/b/1'):
respond('Hello from B1')
@get('/b/2'):
respond('Hello from B2')Include module paths
File structure
Pointing to sub-folders
Last updated