mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-12 23:04:45 +00:00
17 lines
234 B
Go
17 lines
234 B
Go
package main
|
|
|
|
import (
|
|
logging "github.com/ipfs/go-log"
|
|
"github.com/status-im/go-waku/cmd"
|
|
)
|
|
|
|
func main() {
|
|
lvl, err := logging.LevelFromString("info")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
logging.SetAllLoggers(lvl)
|
|
|
|
cmd.Execute()
|
|
}
|