From 918038a02a995f7eea73910181bc1adf61cac0ff Mon Sep 17 00:00:00 2001 From: MasterPtato <23087326+MasterPtato@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:19:08 +0000 Subject: [PATCH] feat: update billing to use tiers (#900) ## Changes --- lib/util/env/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/util/env/src/lib.rs b/lib/util/env/src/lib.rs index b862236aa1..35b9808cd3 100644 --- a/lib/util/env/src/lib.rs +++ b/lib/util/env/src/lib.rs @@ -156,7 +156,8 @@ pub fn chirp_service_name() -> &'static str { #[derive(Deserialize)] pub struct RivetBilling { - pub dynamic_servers_capacity_price_id: String, + pub indie_price_id: String, + pub studio_price_id: String, } pub fn billing() -> Option<&'static RivetBilling> {