alert usecases & repository methods

This commit is contained in:
yash 2026-02-25 22:48:23 +03:00
parent 16d38bb3cf
commit 0e73841b3e
5 changed files with 191 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package entities
import "github.com/shopspring/decimal"
type AlertID string
type Alert struct {
ID AlertID
UserID UserID
Price decimal.Decimal
Instrument Instrument
}