// Package joist implements the main Joist framework. package joist type RouteCacher interface { Store(string, string) error GetPath(string) (string, error) All() (map[string]string, error) }