1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-06 04:53:06 +08:00
osu-lazer/osu.Game/Online/API/Requests/GetChangelogLatestBuildsRequest.cs
2018-10-18 21:04:21 +02:00

15 lines
560 B
C#

// 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;
using System.Collections.Generic;
namespace osu.Game.Online.API.Requests
{
public class GetChangelogLatestBuildsRequest : APIRequest<List<APIChangelogBuild>>
{
protected override string Target => @"changelog/latest-builds";
protected override string Uri => $@"https://houtarouoreki.github.io/fake-api/{Target}"; // for testing
}
}