![]() |
install | documentation | examples | articles | changelog 16.6.0 released on Mar 08, 2023 | articles updated on Mar 20, 2023
|
void _before ( ) ...
Every Vely request goes through a request dispatcher (i.e. vely_dispatch_request() function), which is auto-generated. In order to specify your code to execute before a request is handled, create a source file "_before.vely" and implement a function "void _before()", which will be automatically picked up and compiled with your application. #include <vely.h>
void _before()
{
out-header default
@Getting Started!!
}