joist/route_cache.go

9 lines
196 B
Go

// 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)
}