mirror of
https://github.com/TechplexEngineer/plexview.git
synced 2026-07-31 04:07:24 +00:00
Able to login and out user
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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 "";
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user