first commit of restructured project

This commit is contained in:
KS Jannette
2026-02-22 15:21:18 -05:00
commit 9fca234606
75 changed files with 8299 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package models
import "time"
type PricePoint struct {
ID int64 `json:"id"`
Timestamp time.Time `json:"timestamp"`
Price float64 `json:"price"`
TradingDay string `json:"tradingDay"`
Source string `json:"source"`
CreatedAt time.Time `json:"createdAt"`
}