package models type ( // HpcModel is an interface to be customized, add more methods here, // and implement the added methods in customHpcModel. HpcModel interface { hpcModel } customHpcModel struct { *defaultHpcModel } )