this is the base Controller class in Fins. The controller is used to map incoming requests
to functions that are called to handle the request.
event methods have this signature:
void func(Fins.Request request, Fins.Response response,
mixed ... args);
where func is the name of the event that will trigger the event function to be called.