RestApiv2/internal/parser/parser.go

13 lines
112 B
Go
Raw Normal View History

2022-12-06 23:50:32 +03:00
package parser
type parser struct {
}
2022-12-31 01:43:30 +03:00
func New() *parser {
2022-12-06 23:50:32 +03:00
return &parser{}
}
func (p *parser) Start() {
}