Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+3 -3
View File
@@ -6,12 +6,12 @@
mod channel_config;
use anyhow::Result;
use warp_core::{
use galaxy_core::{
channel::{Channel, ChannelState},
features,
};
// Simple wrapper around warp::run() for feature preview channel builds.
// Simple wrapper around galaxy::run() for feature preview channel builds.
fn main() -> Result<()> {
ChannelState::set(
ChannelState::new(Channel::Preview, channel_config::load_config!("preview"))
@@ -19,5 +19,5 @@ fn main() -> Result<()> {
.with_additional_features(&[features::FeatureFlag::ForceLogin]),
);
warp::run()
galaxy::run()
}