77e69b9cf3
Signed-off-by: Olivier Gambier <olivier@docker.com>
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)
|
|
}
|