osu/osu.Game/Online/API/Requests/GetChangelogRequest.cs

14 lines
502 B
C#
Raw Normal View History

2018-07-19 17:07:24 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Online.API.Requests.Responses;
namespace osu.Game.Online.API.Requests
{
public class GetChangelogRequest : APIRequest<APIChangelogBuild[]>
2018-07-19 17:07:24 +00:00
{
2018-07-20 16:23:25 +00:00
protected override string Target => @"changelog";
2018-07-22 03:28:43 +00:00
protected override string Uri => $@"https://houtarouoreki.github.io/fake-api/{Target}/index"; // for testing
2018-07-19 17:07:24 +00:00
}
}