diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-02-15 12:24:21 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-04-21 09:04:15 +0200 |
commit | b505e76393c28110fa1b6c208d248f0ee59f90cf (patch) | |
tree | cfc6a15d4eb3489fdc915e5617740d8d69042ed8 /mod | |
parent | a1ef8f669d41908e5d457ffe2ab2ac0455fec037 (diff) | |
download | volse-hubzilla-b505e76393c28110fa1b6c208d248f0ee59f90cf.tar.gz volse-hubzilla-b505e76393c28110fa1b6c208d248f0ee59f90cf.tar.bz2 volse-hubzilla-b505e76393c28110fa1b6c208d248f0ee59f90cf.zip |
First attemp of api
Diffstat (limited to 'mod')
-rw-r--r-- | mod/api.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mod/api.php b/mod/api.php new file mode 100644 index 000000000..fa5e43de9 --- /dev/null +++ b/mod/api.php @@ -0,0 +1,11 @@ +<?php + +require_once('include/api.php'); + +function api_content(&$a) { + echo api_call($a); + killme(); +} + + + |