diff options
Diffstat (limited to 'app/class')
-rw-r--r-- | app/class/globals.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/class/globals.php b/app/class/globals.php new file mode 100644 index 0000000..3512961 --- /dev/null +++ b/app/class/globals.php @@ -0,0 +1,22 @@ +<?php + +/* + * SCROTT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + * + * For more information, please refer to UNLICENSE + */ + +/* + * This file defines various functions which exist in the global namespace. + * These are utility functions and constants for the Scrott application. + */ + +define("__VERSION__", "v0.0"); + +?> |