1
0
Fork 0
mirror of synced 2024-05-25 19:41:14 -04:00
ultimate-vim/sources_non_forked/vim-go/autoload/go/test-fixtures/fmt/imports/vendor/gh.com/gi/foo-logging/logger.go

13 lines
156 B
Go
Raw Normal View History

2017-07-06 08:57:35 -04:00
package logging
import "fmt"
type TestLogger struct {
Value string
}
func (l *TestLogger) Debug(msg string) {
fmt.Println(msg)
fmt.Println(l.Value)
}