e2d0047a2a
This introduces message prototypes to applicable API endpoints, which allows us to invert control of message sending and give the user a chance to intervene with an interactive ui. Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
10 lines
120 B
Go
10 lines
120 B
Go
package cli
|
|
|
|
import (
|
|
logging "github.com/ipfs/go-log/v2"
|
|
)
|
|
|
|
func init() {
|
|
logging.SetLogLevel("watchdog", "ERROR")
|
|
}
|