From fb8f0d248b073ab3650e55cdbb6abdad955c97ca Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sat, 3 Dec 2022 16:10:10 +0100 Subject: [PATCH] Move cmd/srv.go to ./ --- Makefile | 4 ++-- cmd/srv.go => srv.go | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename cmd/srv.go => srv.go (100%) diff --git a/Makefile b/Makefile index 467424a..506fb6a 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ -srv: cmd/*.go internal/*/*.go - go build -o srv ./cmd/ +srv: srv.go internal/*/*.go + go build -o srv ./ diff --git a/cmd/srv.go b/srv.go similarity index 100% rename from cmd/srv.go rename to srv.go