mirror of
https://github.com/osukey/osukey.git
synced 2025-05-13 17:47:18 +09:00
This is a temporary change to target the new experimental/next deploy. The main change that should result from this is having the user profile show the pp^next values from the new domain.
21 lines
751 B
C#
21 lines
751 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
#nullable disable
|
|
|
|
namespace osu.Game.Online
|
|
{
|
|
public class ProductionEndpointConfiguration : EndpointConfiguration
|
|
{
|
|
public ProductionEndpointConfiguration()
|
|
{
|
|
WebsiteRootUrl = APIEndpointUrl = @"https://lazer.ppy.sh";
|
|
APIClientSecret = @"FGc9GAtyHzeQDshWP5Ah7dega8hJACAJpQtw6OXk";
|
|
APIClientID = "5";
|
|
SpectatorEndpointUrl = "https://spectator.ppy.sh/spectator";
|
|
MultiplayerEndpointUrl = "https://spectator.ppy.sh/multiplayer";
|
|
MetadataEndpointUrl = "https://spectator.ppy.sh/metadata";
|
|
}
|
|
}
|
|
}
|