示例#1
0
        public async Task <ActionResult <bool> > Enlist(string code)
        {
            await _gamespaceService.Enlist(code);

            return(Ok());
        }
        public async Task <ActionResult <bool> > BecomePlayer(string code)
        {
            await _svc.Enlist(code, Actor);

            return(Ok());
        }