You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuUsersController.cs 279B

1234567891011121314
  1. using Luticate2.Utils.Controllers;
  2. using Microsoft.AspNetCore.Mvc;
  3. namespace Luticate2.Auth.Controllers
  4. {
  5. [Route("luticate/users")]
  6. public class LuUsersController : LuController
  7. {
  8. public string Get()
  9. {
  10. return "users";
  11. }
  12. }
  13. }