modulepackage
0.0.0-20250207081934-b7373362e3d2
Repository: https://github.com/even44/jobsearchapi.git
Documentation: pkg.go.dev
# README
❗❗❗ NB! Not designed to be deployed by others as there still are hardcoded parts.. will fix later :) ❗❗❗
What is this?
This is a personal WIP project I'm doing to learn go! It's an API that will support a web application that will keep track of my job applications.
Can't you just use a spreadsheet?
Yes.. i could. But what do i learn from doing that?
Endpoints
GET /jobapplications - Returns a JSON list of all applications
GET /jobapplications/{id} - Returns a single JSON object containing job application with id
POST /jobapplications - Creates a job application from JSON request body
PUT /jobapplications/{id} - Updates a job application with id using JSON request body
DEL /jobapplications/{id} - Deletes job application with id
Example JSON object for job application
{
"id": 3,
"position": "Bossman",
"company": "Bosses AS",
"search_date": "11/10/2024",
"deadline": "15/10/2024",
"response": false,
"interview": false,
"done": false,
"link": "https://finn.no"
}
# Packages
No description provided by the author