diff options
Diffstat (limited to 'Zotlabs/Web/Controller.php')
-rw-r--r-- | Zotlabs/Web/Controller.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Zotlabs/Web/Controller.php b/Zotlabs/Web/Controller.php new file mode 100644 index 000000000..2d0f58891 --- /dev/null +++ b/Zotlabs/Web/Controller.php @@ -0,0 +1,13 @@ +<?php + +namespace Zotlabs\Web; + + +class Controller { + + function init() {} + function post() {} + function get() {} + +} + |