Added CLI commands
This commit is contained in:
parent
ccb76696c3
commit
4f2bb677dc
10 changed files with 143 additions and 2 deletions
14
log/log.go
Normal file
14
log/log.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package log
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
)
|
||||
|
||||
var (
|
||||
// Info is used for general info messages.
|
||||
Info = log.New(os.Stdout, "", 0)
|
||||
|
||||
// Error is used for error messages.
|
||||
Error = log.New(os.Stderr, "", 0)
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue