From 7678eb196fa54dd1e7d6f28dd0234fe280f3bf60 Mon Sep 17 00:00:00 2001 From: jeff Date: Wed, 4 Jun 2025 13:45:27 -0700 Subject: [PATCH] finish init --- README.md | 19 +++++++++++++++++++ main.go | 5 +++++ 2 files changed, 24 insertions(+) create mode 100644 main.go diff --git a/README.md b/README.md index 8505f15..a17172e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,21 @@ # current-weather +From recruiter: + +> Coding Assessment: +> +> Here is code exam neeed for new Golang Roles - Weather Service Assignment +> +> Write an HTTP server that serves the current weather. Your server should expose an endpoint that: +> +> 1. Accepts latitude and longitude coordinates +> 2. Returns the short forecast for that area for Today (“Partly Cloudy” etc) +> 3. Returns a characterization of whether the temperature is “hot”, “cold”, or “moderate” (use your discretion on mapping temperatures to each type) +> 4. Use the National Weather Service API Web Service as a data source. +> +> The purpose of this exercise is to provide a sample of your work that we can discuss together in the Technical Interview. +> +> * We respect your time. Spend as long as you need, but we intend it to take around an hour. +> * We do not expect a production-ready service, but you might want to comment on your shortcuts. +> * The submitted project should build and have brief instructions so we can verify that it works. +> * You may write in whatever language or stack you're most comfortable in diff --git a/main.go b/main.go new file mode 100644 index 0000000..7905807 --- /dev/null +++ b/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + +}