From 4b309b278e3533d25361e1bdd7aa012f407663bb Mon Sep 17 00:00:00 2001 From: dheeruk12 <96110782+dheeruk12@users.noreply.github.com> Date: Mon, 9 May 2022 14:58:15 +0530 Subject: [PATCH] change package name --- alert_rules.go => client/alert_rules.go | 2 +- client.go => client/client.go | 2 +- error.go => client/error.go | 2 +- esp.go => client/esp.go | 2 +- incidents.go => client/incidents.go | 2 +- integrations.go => client/integrations.go | 2 +- invites.go => client/invites.go | 2 +- members.go => client/members.go | 2 +- priority.go => client/priority.go | 2 +- roles.go => client/roles.go | 2 +- schedules.go => client/schedules.go | 2 +- services.go => client/services.go | 2 +- services_test.go => client/services_test.go | 2 +- tags.go => client/tags.go | 2 +- team.go => client/team.go | 2 +- users.go => client/users.go | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) rename alert_rules.go => client/alert_rules.go (99%) rename client.go => client/client.go (99%) rename error.go => client/error.go (97%) rename esp.go => client/esp.go (99%) rename incidents.go => client/incidents.go (99%) rename integrations.go => client/integrations.go (99%) rename invites.go => client/invites.go (98%) rename members.go => client/members.go (99%) rename priority.go => client/priority.go (99%) rename roles.go => client/roles.go (99%) rename schedules.go => client/schedules.go (99%) rename services.go => client/services.go (99%) rename services_test.go => client/services_test.go (96%) rename tags.go => client/tags.go (98%) rename team.go => client/team.go (99%) rename users.go => client/users.go (97%) diff --git a/alert_rules.go b/client/alert_rules.go similarity index 99% rename from alert_rules.go rename to client/alert_rules.go index 5986025..cbb1d04 100644 --- a/alert_rules.go +++ b/client/alert_rules.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/client.go b/client/client.go similarity index 99% rename from client.go rename to client/client.go index 07017fe..a9b3360 100644 --- a/client.go +++ b/client/client.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "bytes" diff --git a/error.go b/client/error.go similarity index 97% rename from error.go rename to client/error.go index 2e4f8ec..072f0a5 100644 --- a/error.go +++ b/client/error.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "errors" diff --git a/esp.go b/client/esp.go similarity index 99% rename from esp.go rename to client/esp.go index 062f873..c56df70 100644 --- a/esp.go +++ b/client/esp.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/incidents.go b/client/incidents.go similarity index 99% rename from incidents.go rename to client/incidents.go index 31cf8d2..7721863 100644 --- a/incidents.go +++ b/client/incidents.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/integrations.go b/client/integrations.go similarity index 99% rename from integrations.go rename to client/integrations.go index 594209e..57037a3 100644 --- a/integrations.go +++ b/client/integrations.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/invites.go b/client/invites.go similarity index 98% rename from invites.go rename to client/invites.go index f2460b4..ed117f1 100644 --- a/invites.go +++ b/client/invites.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/members.go b/client/members.go similarity index 99% rename from members.go rename to client/members.go index 7f5223e..8d80a74 100644 --- a/members.go +++ b/client/members.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/priority.go b/client/priority.go similarity index 99% rename from priority.go rename to client/priority.go index ba73fbd..7898099 100644 --- a/priority.go +++ b/client/priority.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/roles.go b/client/roles.go similarity index 99% rename from roles.go rename to client/roles.go index 9321ccc..29654a2 100644 --- a/roles.go +++ b/client/roles.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/schedules.go b/client/schedules.go similarity index 99% rename from schedules.go rename to client/schedules.go index a3687ea..d35866a 100644 --- a/schedules.go +++ b/client/schedules.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/services.go b/client/services.go similarity index 99% rename from services.go rename to client/services.go index 2232521..7f33e36 100644 --- a/services.go +++ b/client/services.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/services_test.go b/client/services_test.go similarity index 96% rename from services_test.go rename to client/services_test.go index 10413fd..528ba7e 100644 --- a/services_test.go +++ b/client/services_test.go @@ -1,4 +1,4 @@ -package zenduty +package client import "testing" diff --git a/tags.go b/client/tags.go similarity index 98% rename from tags.go rename to client/tags.go index d37e911..0bf903f 100644 --- a/tags.go +++ b/client/tags.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/team.go b/client/team.go similarity index 99% rename from team.go rename to client/team.go index 5eacd44..8ea397c 100644 --- a/team.go +++ b/client/team.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json" diff --git a/users.go b/client/users.go similarity index 97% rename from users.go rename to client/users.go index 88fdec6..13280a5 100644 --- a/users.go +++ b/client/users.go @@ -1,4 +1,4 @@ -package zenduty +package client import ( "encoding/json"