From 88f767d992471b05bb18c1fa3fc9d5f9c7756878 Mon Sep 17 00:00:00 2001 From: Jorin Vogel Date: Tue, 23 May 2017 11:51:28 +0200 Subject: [PATCH] Move main.go to top-level. Makes fakedata *go-gettable*. --- Makefile | 2 +- cmd/fakedata.go => main.go | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cmd/fakedata.go => main.go (100%) diff --git a/Makefile b/Makefile index e4f1d2c..a8a2582 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ lint: ## Run all the linters ci: lint test ## Run all the tests and code checks build: ## Build a dev version of fakedata - go build cmd/fakedata.go + go build # Absolutely awesome: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html help: diff --git a/cmd/fakedata.go b/main.go similarity index 100% rename from cmd/fakedata.go rename to main.go