Example #1
0
File: fs.go Project: xujianhai/gopa
func (this *FsStore) LogFetchFailedUrl(path string, content string) {
	util.FileAppendNewLine(path, content)
}
Example #2
0
File: fs.go Project: xujianhai/gopa
func (this *FsStore) saveFetchedUrlToLocalFile(path string, url string) {
	util.FileAppendNewLine(path, url)
}
Example #3
0
File: fs.go Project: xujianhai/gopa
func (this *FsStore) LogSavedFile(path string, content string) {
	util.FileAppendNewLine(path, content)
}