2020-12-24 16:58:38 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-24 16:58:38 +08:00
|
|
|
namespace osu.Game.Online
|
|
|
|
{
|
|
|
|
public class ProductionEndpointConfiguration : EndpointConfiguration
|
|
|
|
{
|
|
|
|
public ProductionEndpointConfiguration()
|
|
|
|
{
|
2020-12-24 17:11:40 +08:00
|
|
|
WebsiteRootUrl = APIEndpointUrl = @"https://osu.ppy.sh";
|
2020-12-24 16:58:38 +08:00
|
|
|
APIClientSecret = @"FGc9GAtyHzeQDshWP5Ah7dega8hJACAJpQtw6OXk";
|
|
|
|
APIClientID = "5";
|
2022-06-11 21:30:56 +08:00
|
|
|
SpectatorEndpointUrl = "https://spectator.ppy.sh/spectator";
|
|
|
|
MultiplayerEndpointUrl = "https://spectator.ppy.sh/multiplayer";
|
2022-07-05 21:15:52 +08:00
|
|
|
MetadataEndpointUrl = "https://spectator.ppy.sh/metadata";
|
2020-12-24 16:58:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|