# README
Go Students Restful APİ
In this project, a simple web service has been developed to manage student data. The service we have developed includes basic functions such as adding students, listing students, and accessing student details.
Installation
You can follow the steps below to run the project on your local machine:
- First, clone the project:
git clone https://github.com/BaverTorun/StudentsRestAPI.git cd GoStudentsRestAPI
- Install the necessary dependencies:
go get -u github.com/gin-gonic/gin
- Start the project:
go run main.go
Open your browser and navigate to http://localhost:8080 to view the project.
Usage
In this section, you can explain the basic steps on how to use the project. You can describe actions such as adding a student, listing students, and accessing student details.
Example Usage:
- Student List: Navigate to http://localhost:8080/students in your browser to view all students.
- Add Student: You can add a new student by sending a POST request.
- Student Details: Navigate to http://localhost:8080/students/:id to view details of a specific student.
Contributing
If you'd like to contribute to the project, you can do so by sending pull requests with detailed descriptions of your changes.