This repository has been archived on 2023-06-30. You can view files and clone it, but cannot push or open issues or pull requests.
2chBackAPI/BufferControllers/AccessController.cs

15 lines
271 B
C#
Raw Permalink Normal View History

2022-12-15 01:32:54 +10:00
using NeDvachAPI.Models;
using Npgsql;
namespace NeDvachAPI.DBControllers
{
public class BanList
{
public static string[] GetBanned()
{
string[] bannedIPs = new string[0];
//
return bannedIPs;
}
}
}