Skip to content

Commit 64c9723

Browse files
committed
style
1 parent 751f768 commit 64c9723

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/JsonApiDotNetCoreExample/Controllers/TestValuesController.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace JsonApiDotNetCoreExample.Controllers
44
{
5-
[Route("[controller]")]
6-
public class TestValuesController : Controller
7-
{
8-
[HttpGet]
9-
public IActionResult Get()
5+
[Route("[controller]")]
6+
public class TestValuesController : Controller
107
{
11-
var result = new string[] { "value" };
12-
return Ok(result);
8+
[HttpGet]
9+
public IActionResult Get()
10+
{
11+
var result = new string[] { "value" };
12+
return Ok(result);
13+
}
1314
}
14-
}
1515
}

0 commit comments

Comments
 (0)