mirror of
https://github.com/minio/minio.git
synced 2025-03-09 19:20:08 -04:00
10 lines
175 B
Go
10 lines
175 B
Go
package check
|
|
|
|
func PrintLine(filename string, line int) (string, error) {
|
|
return printLine(filename, line)
|
|
}
|
|
|
|
func Indent(s, with string) string {
|
|
return indent(s, with)
|
|
}
|