![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/handrixn/contacts-api
This project is a Contact Management RESTful API implemented in Golang. It provides CRUD (Create, Read, Update, Delete) operations for managing contacts. The API supports sorting, filtering, and pagination.
Clone the repository:
git clone https://github.com/handrixn/contacts-api.git
Alternatively, you can download the project files manually.
Change to the project directory:
cd contacts-api
Build the project:
make build
Run the project:
make run
The API will start running on http://localhost:8080
.
The API documentation (Swagger) is available at http://localhost:8080/docs
.
/contacts
{
"name": "John Doe",
"gender": "male",
"phone": "123456789",
"email": "john.doe@example.com"
}
/contacts/{id}
/contacts/{id}
{
"name": "Updated Name",
"phone": "987654321"
}
/contacts/{id}
/contacts
If you prefer to manually build and run the project without using the Makefile, you can follow these steps:
Build the project:
go build -o contact-api
Run the project:
./contact-api
Remember to have the go
command available in your system's PATH.
For cleaning the generated binary file, you can use the command:
make clean
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.