osukey/osu.Game/Online/MisskeyAPI/DefaultEndpointConfigration.cs
2022-07-02 22:17:31 +09:00

14 lines
386 B
C#

// Copyright (c) sim1222 <kokt@sim1222.com>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Game.Online.MisskeyAPI
{
public class DefaultEndpointConfigration : EndpointConfiguration
{
public DefaultEndpointConfigration()
{
APIEndpointUrl = "https://misskey.io";
}
}
}