mirror of https://github.com/minio/minio.git
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)
|
||
|
}
|