こけっち b68642c688
wip: Misskey Login Works!!!!!💪💪💪💪💪💪💪💪💪💪
2022-08-26 05:37:06 +09:00

30 lines
669 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>, sim1222 <kokt@sim1222.com>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Net.Http;
using Newtonsoft.Json;
using osu.Framework.IO.Network;
namespace osu.Game.Online.MisskeyAPI.Requests
{
public class I : APIRequest<MisskeyAPI.Requests.Responses.I>
{
public I()
{
}
protected override WebRequest CreateWebRequest()
{
var req = base.CreateWebRequest();
req.Method = HttpMethod.Post;
return req;
}
protected override string Target => @"i";
}
}