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