delete dead code

This commit is contained in:
Emil Lerch 2026-03-10 15:21:24 -07:00
parent 3a6b6f1e26
commit 535ab7d048
Signed by: lobo
GPG key ID: A7B62D657EF764F8

View file

@ -1,19 +0,0 @@
pub const SecurityType = enum {
stock,
etf,
mutual_fund,
index,
crypto,
forex,
unknown,
};
/// Basic information about a ticker symbol.
pub const TickerInfo = struct {
symbol: []const u8,
name: ?[]const u8 = null,
exchange: ?[]const u8 = null,
security_type: SecurityType = .unknown,
currency: ?[]const u8 = null,
country: ?[]const u8 = null,
};