2026-03-26 01:56:29 +07:00

8 lines
131 B
Go

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