summaryrefslogtreecommitdiff
path: root/Parser/Protocol/Interface.go
blob: 34e011db1589da81eae84c85b43e344cfe63055f (plain)
1
2
3
4
5
6
7
8
9
package protocol

import (
	models "physick.ru/predictions/DAL/models"
)

type Parser interface {
	GetFighterInfo(FirstName string, LastName string) models.Fighter
}