12 lines
309 B
Go
12 lines
309 B
Go
// Copyright (C) 2021 nytpu
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
// For more license details, see LICENSE or <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
package main
|
|
|
|
// These variables are set by the linker. They can be modified in the Makefile.
|
|
var (
|
|
Version = "Unknown"
|
|
Commit = "Unknown"
|
|
)
|