- Created SQL script to set up database tables for projects and technologies. - Added Docker Compose configuration for application and MySQL service. - Implemented API endpoints for CRUD operations on technologies. - Defined data types for projects and technologies. - Established routing for API endpoints.
15 lines
210 B
Go
15 lines
210 B
Go
package main
|
|
|
|
import (
|
|
"api_serveurless_go/routes"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
// Configuration des routes
|
|
routes.SetupRoutes()
|
|
|
|
// Démarrage du serveur
|
|
http.ListenAndServe(":3000", nil)
|
|
}
|