mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
22a3988222
We want to export some of our CLI code to re-use in other projects. But in Golang you cannot import code from a `main` package. So we need to move the actual code into its own package and only have the `func main()` in the `main` package.
12 lines
263 B
Go
12 lines
263 B
Go
// Copyright (c) 2013-2017 The btcsuite developers
|
|
// Copyright (c) 2015-2016 The Decred developers
|
|
// Copyright (C) 2015-2024 The Lightning Network Developers
|
|
|
|
package main
|
|
|
|
import "github.com/lightningnetwork/lnd/cmd/commands"
|
|
|
|
func main() {
|
|
commands.Main()
|
|
}
|