IZRL and PRNT closes #1

This commit is contained in:
Elijah McMorris 2024-06-07 13:34:33 -07:00
parent 45eae54f4c
commit b4c75c3490
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
3 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,3 @@
version: "3"
services: services:
ark-invest-api-rust-data-test: ark-invest-api-rust-data-test:
container_name: ark-invest-api-rust-data-test container_name: ark-invest-api-rust-data-test

View file

@ -1,4 +1,3 @@
version: "3"
services: services:
ark-invest-api-rust-data: ark-invest-api-rust-data:
image: ghcr.io/nexveridian/ark-invest-api-rust-data:latest image: ghcr.io/nexveridian/ark-invest-api-rust-data:latest

View file

@ -27,6 +27,8 @@ pub enum Ticker {
ARKD, ARKD,
ARKY, ARKY,
ARKB, ARKB,
PRNT,
IZRL
} }
impl Ticker { impl Ticker {
pub fn value(&self) -> &str { pub fn value(&self) -> &str {
@ -44,6 +46,8 @@ impl Ticker {
Ticker::ARKD => "ARKD", Ticker::ARKD => "ARKD",
Ticker::ARKY => "ARKY", Ticker::ARKY => "ARKY",
Ticker::ARKB => "21SHARES_BITCOIN", Ticker::ARKB => "21SHARES_BITCOIN",
Ticker::PRNT => "THE_3D_PRINTING",
Ticker::IZRL => "ISRAEL_INNOVATIVE_TECHNOLOGY",
} }
} }
} }