otter_update_test/main.go

19 lines
209 B
Go
Raw Permalink Normal View History

2020-03-05 02:14:50 +00:00
package main
import (
"log"
"os"
)
func main() {
f, err := os.OpenFile("./log", os.O_TRUNC|os.O_CREATE|os.O_RDWR, 0660)
if err != nil {
panic(err)
}
log.SetOutput(f)
2020-03-05 03:46:10 +00:00
// Updating()
InsertData()
2020-03-05 02:14:50 +00:00
}