1
0
mirror of https://github.com/minio/minio.git synced 2025-01-16 17:23:16 -05:00

10 lines
175 B
Go
Raw Normal View History

package check
func PrintLine(filename string, line int) (string, error) {
return printLine(filename, line)
}
func Indent(s, with string) string {
return indent(s, with)
}