package db import ( "time" ) const ( cacheTimeout = time.Hour cacheCapacity = 4096 ) type Database interface { Ping() error Close() error }