Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/9fa4cedb714bdde7e4e03494832740ece2c19df2/Marr.Data/QGen/IQuery.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/Marr.Data/QGen/IQuery.cs

12 lines
232 B

namespace Marr.Data.QGen
{
internal interface IQuery
{
/// <summary>
/// Generates a SQL query for a given entity.
/// </summary>
/// <returns></returns>
string Generate();
}
}