13 lines
240 B
Go
13 lines
240 B
Go
// Copyright (c) 2021 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !go1.18
|
|
// +build !go1.18
|
|
|
|
package version
|
|
|
|
func vcsCommitID() string {
|
|
return ""
|
|
}
|