From ea63cc90d12bb126b40d2d365314ae4d900b920b Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Thu, 12 Jun 2014 17:33:41 +1000 Subject: [PATCH] Miscellaneous bad commit message (for fun!). --- README => README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename README => README.md (85%) diff --git a/README b/README.md similarity index 85% rename from README rename to README.md index 9f9cf95..ffdbe32 100644 --- a/README +++ b/README.md @@ -1,5 +1,7 @@ -``AnyMap`` -========== +``AnyMap``, a safe and convenient store for one value of each type +================================================================== + +[![Build Status](https://travis-ci.org/chris-morgan/anymap.svg?branch=master)](https://travis-ci.org/chris-morgan/anymap) If you’re familiar with Go and Go web frameworks, you may have come across the common “environment” pattern for storing data related to the request. It’s typically something like ``map[string]interface{}`` and is accessed with arbitrary strings which may clash and type assertions which are a little unwieldy and must be used very carefully.