Skip to content

Latest commit

 

History

History
24 lines (11 loc) · 680 Bytes

README.md

File metadata and controls

24 lines (11 loc) · 680 Bytes

goCamelCase

goCamelCase is a RESTful service in Go that takes string as an input and returns camelCase of the same based on a standard English Dictionary.

Example:

input: "onetwothree"

output: "oneTwoThree"

The service is deployed in Azure.

Installation

Instructions for installation and running the service can be found here.

Design

The design of the service and libraries used internally can be found here. It also defines the assumptions of the service, and talks about the analysis and future improvements.