Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -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()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user