blob: 3feaadfda7f43d6169a2379e45473f11a0f80897 (
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.0.0";
}
}
|