mirror of
https://github.com/dnote/dnote
synced 2026-03-18 00:09:56 +01:00
12 lines
311 B
Go
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")
|
|
}
|