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