mirror of
https://github.com/dnote/dnote
synced 2026-03-16 15:35:52 +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")
|
|
}
|