Skip to content

ATaiIsHere/spring-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spring-project

Create Table

CREATE TABLE `currency ` (
  currency_id VARCHAR(255),
  name VARCHAR(255)
)

API

  • coindesk data

    GET /currentPrice

    coindesk data transform API GET /currencyPrice

  • 新增 POST /currency

    body:

    {
        "currencyId": "TWD",
        "name": "台幣"
    }
    
  • 讀取 GET /currency/{id}

  • 更新 PUT /currency/{id}

    body:

    {
        "currencyId": "TWD",
        "name": "新台幣"
    }
    
  • 刪除 DELETE /currency/{id}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages