packagemodelimport"errors"var(ErrAppNotFound=errors.New("app not found"))typeAppstruct{InstanceURLstringClientIDstringClientSecretstring}typeAppRepositoryinterface{Add(appApp)(errerror)Update(instanceURLstring,clientIDstring,clientSecretstring)(errerror)Get(instanceURLstring)(appApp,errerror)}