ardanlabs / service

Starter-kit for writing services in Go using Kubernetes.

Home Page:https://www.ardanlabs.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Naming files

mrbardia72 opened this issue · comments

I think it is better to name the files and folders as follows

usergrp ==> user_grp
homegrep ===> home_grp

For better readability

I would not do this. Even though the compiler will let you, this is not idiomatic. The language uses the underscore to provide the compiler information such as, _test for a test file and package. Another example is _darwin where you are specifying the OS.

There needs to be a unique package name and I think grp is small and solves the problem.