2025-12-31 18:01:12 -08:00
|
|
|
// Copyright (C) 2021-2025, Lux Industries Inc. All rights reserved.
|
2025-12-19 07:11:06 -08:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-07-18 15:20:29 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2025-07-17 16:56:43 -05:00
|
|
|
"github.com/luxfi/netrunner/cmd"
|
2022-07-18 15:20:29 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
cmd.Execute()
|
|
|
|
|
}
|