[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 609 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 609 Bytes

gopherology

Go Report Card

🔮 Go microservice that recursively computes a numerological Life Path number for a given birthdate.

Usage

/api/path

Request

curl -X POST https://gopherology.herokuapp.com/api/path \
  -H 'Content-Type: application/json' \
  -d '{"day":26,"month":6,"year":1988}'

Response

{
  "pathNumber": 22,
  "detailsUrl": "https://www.tokenrock.com/numerology/my_life_path/?num=22",
  "isMasterNumber": true
}

Development

$ export PORT=1324; go run main.go