Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // CreatePrintf is fmt.Printf with red as foreground color. CreatePrintf = func(format string, a ...interface{}) { mu.Lock() defer mu.Unlock() createPrintf(format, a...) } // DeletePrintf is fmt.Printf with green as foreground color. DeletePrintf = func(format string, a ...interface{}) { mu.Lock() defer mu.Unlock() deletePrintf(format, a...) } // UpdatePrintf is fmt.Printf with yellow as foreground color. UpdatePrintf = func(format string, a ...interface{}) { mu.Lock() defer mu.Unlock() updatePrintf(format, a...) } // CreatePrintln is fmt.Println with red as foreground color. CreatePrintln = func(a ...interface{}) { mu.Lock() defer mu.Unlock() createPrintln(a...) } // DeletePrintln is fmt.Println with green as foreground color. DeletePrintln = func(a ...interface{}) { mu.Lock() defer mu.Unlock() deletePrintln(a...) } // UpdatePrintln is fmt.Println with yellow as foreground color. UpdatePrintln = func(a ...interface{}) { mu.Lock() defer mu.Unlock() updatePrintln(a...) } )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.