Categorygithub.com/mmuflih/go-arch
repositorypackage
0.0.0-20231011232034-bd3d095b5d9c
Repository: https://github.com/mmuflih/go-arch.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

Go Clean Architecture With Dependency Injection (DI)

Tools

How to Use

git clone https://github.com/mmuflih/go-arch.git
cd go-arch
glide install
cp env.json.example env.json
cp dbconfig.yml.example dbconfig.yml
sql-migrate up
fresh

Project Structure

- Main_Project
    - config
    - container
    - context
    - domain
    - httphandler
    - lib
    - migrations
    - role
    

Endpoints

  • Register /api/v1/user/register

      [request body]
    
      {
          "email": "[email protected]",
          "pin": "123456"
      }
    
  • Login /api/v1/user/login

      [request body]
    
      {
          "email": "[email protected]",
          "pin": "123456"
      }
    
  • Get Me /api/v1/user