package models type ( // TaskModel is an interface to be customized, add more methods here, // and implement the added methods in customTaskModel. TaskModel interface { taskModel } customTaskModel struct { *defaultTaskModel } )