elonX/cache/api/currency.go
2025-02-20 16:47:08 +08:00

17 lines
218 B
Go

package cacheApi
import (
"epur-pay/model"
"sync"
)
type Currency struct {
List map[string]model.ExchangeRate
Map *sync.Map
duplicate *Currency
}
func (p *Currency) Refresh() *Currency {
return p
}