Add functionality of previous main.go to cmd/root.go,
move main_test.go to cmd/root_test.go
Test and run
go test ./...
go run main.go
Add --name parameter that defaults to Go
Module housekeeping
go mod tidy
Add serve command and run it
~/go/bin/cobra-cli add serve
go run main.go serve
Move getMessage function to github.com/t3easy/hello-go/internal with capital G!
As we will need it in the serve cmd, too.
Run tests to check if nothing is broken.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.