]> Sergey Matveev's repositories - vors.git/blob - internal/version.go
vors-vad usage
[vors.git] / internal / version.go
1 package internal
2
3 import "runtime"
4
5 const (
6         Version  = "2.2.0"
7         Warranty = `Copyright (C) 2024 Sergey Matveev
8
9 This program is free software: you can redistribute it and/or modify
10 it under the terms of the GNU Affero General Public License as
11 published by the Free Software Foundation, version 3 of the License.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU Affero General Public License for more details.
17
18 You should have received a copy of the GNU Affero General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>.`
20 )
21
22 func GetVersion() string {
23         return "VoRS version " + Version + " built with " + runtime.Version()
24 }