blob: e5e99f771ec5989cb63f7f7af9fc7dd1336ccc52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/*
* Copyright 2014 Florian "Bluewind" Pritz <bluewind@server-speed.net>
*
* Licensed under AGPLv3
* (see COPYING for full license text)
*
*/
namespace controllers\api\v1;
class api_info extends \controllers\api\api_controller {
static public function get_version()
{
return "1.1.0";
}
}
|