1 <?php
2
3 /*
4 * WORDSMITH ACTION CLASS
5 *
6 * this class is the base object for a custom action to be added into wordpress.
7 * it is a best prectise initiative that all actions to implement custom wordpress logic be enclosed in a single class which exnteds this class.
8 */
9
10 namespace nk2580\wordsmith\Endpoints;
11
12 class EndpointHandler {
13
14
15 }
16