12 lines
204 B
C#
12 lines
204 B
C#
using OnlyPrompt.Backend.Database;
|
|
|
|
namespace OnlyPrompt.Backend.Controllers
|
|
{
|
|
public class AdminController : BaseController
|
|
{
|
|
public AdminController(OnlyPromptContext db) : base(db)
|
|
{
|
|
}
|
|
}
|
|
}
|