-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcurrency.go
More file actions
46 lines (36 loc) · 828 Bytes
/
currency.go
File metadata and controls
46 lines (36 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main
import (
"context"
"log"
"net/http"
"github.com/jackc/pgx/v4/pgxpool"
"github.com/labstack/echo/v4"
)
type CurrencyValue struct {
Code string `json:"code"`
Name string `json:"name"`
Value Number `json:"value"`
}
func getCurrencydata(db *pgxpool.Pool) []CurrencyValue {
var res []CurrencyValue
rows, err := db.Query(context.Background(), `
select code, name, value
from currency_value_latest
`)
if err != nil {
log.Fatal(err)
}
defer rows.Close()
for rows.Next() {
var objAppend CurrencyValue
if err := rows.Scan(&objAppend.Code, &objAppend.Name, &objAppend.Value); err != nil {
log.Fatal(err)
}
res = append(res, objAppend)
}
return res
}
func currency(c echo.Context, db *pgxpool.Pool) error {
res_data := getCurrencydata(db)
return c.JSON(http.StatusOK, res_data)
}