package server import "path" type Path struct { dir string base string } func (p Path) String() string { return path.Join(p.dir, p.base) }