// Copyright (c) ppy Pty Ltd , sim1222 . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System.Net.Http; using osu.Framework.IO.Network; namespace osu.Game.Online.MisskeyAPI.Requests { public class Meta : APIRequest { public Meta() { } protected override WebRequest CreateWebRequest() { var req = base.CreateWebRequest(); req.Method = HttpMethod.Post; return req; } protected override string Uri => $@"https://misskey.io/api/meta"; protected override string Target => @"meta"; } }