I’m new to go and I have a project with the following structure
client/
user/
interface.go
impl.go
structures/
user/
requests.go
responses.go
actions/
user/
get_user.go
create_user.go
So, i have 3 packages with name ‘user’. Is it OK, or I need to rename packages to userstruct
, userclient
, useract
or smth like this? Or I need to change full structures of my code?