summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorDaniel Langesten <daniel.langest@gmail.com>2015-03-03 14:39:09 +0100
committerDaniel Langesten <daniel.langest@gmail.com>2015-03-03 14:39:09 +0100
commit9e5478817772feb20344314dc8890a4aede10c96 (patch)
tree84a9adc9c315f42240ad471e324f05b4e1022203 /main.go
parent46c774d85fe06905f4f86ba03d7530e0fd01515f (diff)
added main function
Diffstat (limited to 'main.go')
-rw-r--r--main.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..f47ffef
--- /dev/null
+++ b/main.go
@@ -0,0 +1,12 @@
+package main
+
+import (
+ "log"
+)
+
+func main() {
+ err := cleanData()
+ if err != nil {
+ log.Println(err)
+ }
+}