mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-28 04:46:41 -04:00
14 lines
287 B
Go
14 lines
287 B
Go
//go:build !windows
|
|
|
|
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/rwinkhart/MUTN/src/offline"
|
|
"strings"
|
|
)
|
|
|
|
func printDirectoryHeader(vanityDirectory string, indent int) {
|
|
fmt.Printf("\n\n"+strings.Repeat(" ", indent*2)+ansiDirectoryHeader+"%s/"+offline.AnsiReset+"\n", vanityDirectory)
|
|
}
|