https://github.com/manuelernesto/kotlinbr-ktor-demo
https://github.com/manuelernesto/kotlinbr-ktor-demo
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/manuelernesto/kotlinbr-ktor-demo
- Owner: manuelernesto
- Created: 2024-06-07T18:24:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-12T23:54:31.000Z (about 1 year ago)
- Last Synced: 2025-01-21T16:44:09.718Z (9 months ago)
- Language: Kotlin
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simplificando o desenvolvimento de Rest APl com #Kotlin e #Ktor
Este é um repositório Usado na sessão sobre Ktor e Kotlin na comunidade Kotlin Dev Brasil 🇧🇷###
```http request
GET http://0.0.0.0:8080/
Accept: application/json`
```###
```http request
GET http://0.0.0.0:8080/movies
Accept: application/json
```###
```http request
POST http://0.0.0.0:8080/movies
Content-Type: application/json{
"id": 1,
"title": "Iron Man",
"year": 2008
}
```###
```http request
GET http://0.0.0.0:8080/movies/1
Accept: application/json
```###
```http request
DELETE http://0.0.0.0:8080/movies/1
Accept: application/json
```