Update go.mod module line, all require/replace directives, and every .go import path from forge.lthn.ai/core/go-blockchain to dappco.re/go/core/blockchain. Add replace directives to bridge dappco.re paths to existing forge.lthn.ai registry during migration. Update CLAUDE.md, README, and docs to reflect the new module path. Co-Authored-By: Virgil <virgil@lethean.io>
18 lines
389 B
Go
18 lines
389 B
Go
// Copyright (c) 2017-2026 Lethean (https://lt.hn)
|
|
//
|
|
// Licensed under the European Union Public Licence (EUPL) version 1.2.
|
|
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package main
|
|
|
|
import (
|
|
cli "dappco.re/go/core/cli/pkg/cli"
|
|
blockchain "dappco.re/go/core/blockchain"
|
|
)
|
|
|
|
func main() {
|
|
cli.WithAppName("core-chain")
|
|
cli.Main(
|
|
cli.WithCommands("chain", blockchain.AddChainCommands),
|
|
)
|
|
}
|