mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
12 lines
130 B
Go
12 lines
130 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ipfs/kubo/cmd/ipfs/kubo"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(kubo.Start(kubo.BuildDefaultEnv))
|
|
}
|