blob: 5f9cf6ce76fe62e83a6fe426c6cf56a5f45b113c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
let version = "0.0.1"
let copyright = "2016, VyOS maintainers and contributors"
let license = "LGPL version 2 or later with OCaml linking exception"
let version_info () =
let tmpl =
"VyConf version: %s\n" ^^
"Copyright %s\n\n" ^^
"This program is free software, you can use, modify, and redistribute it\n" ^^
"under the terms of %s\n"
in Printf.sprintf tmpl version copyright license
|