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