You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package cmd
-
- import (
- "fmt"
- "os"
- )
-
- func ErrorExitf(format string, args ...interface{}) {
- fmt.Printf(format, args...)
- os.Exit(1)
- }
-
- func ErrorExitln(msg string) {
- fmt.Println(msg)
- os.Exit(1)
- }
|