dnote/log/output.go
Sung Won Cho 0e803c31cc
License (#158)
Revert patches
2019-01-26 21:18:43 +11:00

12 lines
311 B
Go

package log
import (
"fmt"
)
// PrintContent prints the note content with an appropriate format.
func PrintContent(content string) {
fmt.Printf("\n-----------------------content-----------------------\n")
fmt.Printf("%s", content)
fmt.Printf("\n-----------------------------------------------------\n")
}