add parser

This commit is contained in:
2026-03-26 01:56:29 +07:00
parent 05a68caa87
commit ad7bc9f7dd
18 changed files with 899 additions and 10 deletions
@@ -0,0 +1,7 @@
package data_parser
import "context"
type IDataParser interface {
Parse(ctx context.Context, url string, v interface{}) error
}