package main import "errors" var ( ErrFileExist = errors.New("file already exists") ErrFileNotExist = errors.New("file does not exist") ErrFidExist = errors.New("fid already exists") ErrFidNotExist = errors.New("fid does not exist") )