package gm import "server/common" func GetElementByPath(path string) (interface{}, interface{}) { switch path { case "customerPhrases": return &common.ConfigCustomerPhrases{}, &[]common.ConfigCustomerPhrases{} default: return nil, nil } }