mirror of
https://github.com/TechplexEngineer/plexview.git
synced 2026-07-28 06:22:14 +00:00
20 lines
259 B
C#
20 lines
259 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Nancy;
|
|
|
|
namespace PlexView
|
|
{
|
|
public class GridMod : NancyModule
|
|
{
|
|
public GridMod () : base("/api")
|
|
{
|
|
Get["/grid"] = parameters =>
|
|
{
|
|
//return a list of grids
|
|
return "";
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|