package data_parser import "context" type IDataParser interface { Parse(ctx context.Context, url string, v interface{}) error }