Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 641 Bytes

readme.md

File metadata and controls

32 lines (23 loc) · 641 Bytes

Florida Men

Description

This is a small project, that prints the florida man story fitting to the current date. It's main focus is to take first steps in Go.

Currently there is a simple fetcher that fetches the story of the current day from https://floridamanbirthday.org and writes it to the console. More fetchers and writers can be added by implementing the StoryWriter and StoryFetcher Interfaces.

Build

To build an executible run

bin/build

Development

To run the project while developing use

go run floridamen.go

Excute tests:

bin/tests

Excute linter:

bin/lint