using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using SVSim.EmulatedEntrypoint.Security; using SVSim.EmulatedEntrypoint.Security.SteamSessionAuthentication; namespace SVSim.EmulatedEntrypoint.Controllers { /// /// A base controller for SVSim with helpers for getting some values. /// [Route("api/[controller]")] [ApiController] [Authorize(AuthenticationSchemes = SteamAuthenticationConstants.SchemeName)] public abstract class SVSimController : ControllerBase { } }