Raxdiam / CurseForge.NET

A simple C# .NET implementation of the CurseForge API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CurseForge.NET

A simple C# .NET implementation of the CurseForge API

Nuget

Usage

This library closely follows the official documentation for the API (https://docs.curseforge.com/).

Example

internal class Program
{
    private static async Task Main()
    {
        var client = new CurseForge("<your_api_key>");
        var games = await client.GetGames();

        foreach (var game in games.Data) {
            Console.WriteLine(game.Name);
        }
    }
}

About

A simple C# .NET implementation of the CurseForge API

License:MIT License


Languages

Language:C# 100.0%