24 lines
473 B
C#
24 lines
473 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bus.Controllers
|
|
{
|
|
|
|
[Route("api/[controller]/[action]")]
|
|
[ApiController]
|
|
public class DroneCaseInfoController : ControllerBase
|
|
{
|
|
[AllowAnonymous]
|
|
[HttpGet]
|
|
public string Test()
|
|
{
|
|
return "hi";
|
|
}
|
|
}
|
|
}
|