summaryrefslogtreecommitdiff
path: root/Parser/Protocol
diff options
context:
space:
mode:
Diffstat (limited to 'Parser/Protocol')
-rw-r--r--Parser/Protocol/Interface.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/Parser/Protocol/Interface.go b/Parser/Protocol/Interface.go
new file mode 100644
index 0000000..34e011d
--- /dev/null
+++ b/Parser/Protocol/Interface.go
@@ -0,0 +1,9 @@
+package protocol
+
+import (
+ models "physick.ru/predictions/DAL/models"
+)
+
+type Parser interface {
+ GetFighterInfo(FirstName string, LastName string) models.Fighter
+}