10 lines
184 B
Go
10 lines
184 B
Go
package external
|
|
|
|
import (
|
|
"dddexample/pkg/domain/entity"
|
|
)
|
|
|
|
type ExchangeRateRepository interface {
|
|
GetExchangeRage(nowCurrency, nextCurrent string) (*entity.ExchangeRate, error)
|
|
}
|