diff --git a/response_entity.go b/response_entity.go deleted file mode 100644 index 090fd28..0000000 --- a/response_entity.go +++ /dev/null @@ -1,20 +0,0 @@ -package main - -type status struct { - code string - message string - created_at string -} - -type domain struct { - id int - name string - status string - records string - owner string -} - -type domain_list struct { - ret_status status - domains []domain -}