📕 yarn is a Self-Hosted, Twitter™-like Decentralised micro-Blogging platform. No ads, no tracking, your content, your data!
https://yarn.social/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
383 B
21 lines
383 B
// Copyright 2020-present Yarn.social |
|
// SPDX-License-Identifier: AGPL-3.0-or-later |
|
|
|
package yarn |
|
|
|
import ( |
|
"fmt" |
|
) |
|
|
|
var ( |
|
// Version release version |
|
Version = "0.0.2" |
|
|
|
// Commit will be overwritten automatically by the build system |
|
Commit = "HEAD" |
|
) |
|
|
|
// FullVersion display the full version and build |
|
func FullVersion() string { |
|
return fmt.Sprintf("%s@%s", Version, Commit) |
|
}
|
|
|