Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
a4bebf2d2da13d93e08e75bd720e2dff8a3a3afe
/
.
/
examples
/
nestjs
/
src
/
app.controller.ts
blob: 199c35902ca76ed890091a95eeb3d40f943d84c8 [
file
]
import
{
Controller
,
Get
}
from
'@nestjs/common'
;
@Controller
()
export
class
AppController
{
@Get
()
getGreeting
():
string
{
return
'Hello world!'
;
}
}