8000 GitHub - Ankush263/e-commerce-api
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Ankush263/e-commerce-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

E-commerce API (Go lang)

  • This repository features a straightforward e-commerce API developed in the GO programming language. It supports all CRUD operations and includes JWT authentication and tokenization. Users can set up stores, manage products, sell items, and purchase new products from the store.

DB Structure

  • E - commerce API

    • User Model

      • id
      • username
      • email
      • password
      • phone
      • role
        • enum
          • seller
          • customer
      • created_at
      • updated_at
    • Store Model

      • id
      • owner
      • name
      • description
      • store_type
      • store_id
      • created_at
      • updated_at
    • Product Model

      • id
      • name
      • description
      • owner
      • store_id
      • price
      • created_at
      • updated_at
    • Buy Model

      • id
      • user
      • owner
      • product
      • store_id
      • total_price
      • created_at
      • updated_at

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0