diff --git a/account/account.go b/account/account.go index 46cc28e..a7cd814 100644 --- a/account/account.go +++ b/account/account.go @@ -2,7 +2,7 @@ package account import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/account/request.go b/account/request.go index 2fff364..464964c 100644 --- a/account/request.go +++ b/account/request.go @@ -3,7 +3,7 @@ package account import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type GetRequest struct { diff --git a/account/result.go b/account/result.go index 4454509..2695e83 100644 --- a/account/result.go +++ b/account/result.go @@ -1,6 +1,6 @@ package account -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type GetResult struct { client.ResultMetadata diff --git a/alert/acknowledge_request.go b/alert/acknowledge_request.go index c41e904..c4aec62 100644 --- a/alert/acknowledge_request.go +++ b/alert/acknowledge_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/add_details_request.go b/alert/add_details_request.go index 3ba30d0..f2a5dd6 100644 --- a/alert/add_details_request.go +++ b/alert/add_details_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/add_note_request.go b/alert/add_note_request.go index 9612e96..8a4d477 100644 --- a/alert/add_note_request.go +++ b/alert/add_note_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/add_responder.go b/alert/add_responder.go index 7007515..8801e94 100644 --- a/alert/add_responder.go +++ b/alert/add_responder.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/add_tags_request.go b/alert/add_tags_request.go index 9e92bbc..cee8107 100644 --- a/alert/add_tags_request.go +++ b/alert/add_tags_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/add_team_request.go b/alert/add_team_request.go index a796f64..50700da 100644 --- a/alert/add_team_request.go +++ b/alert/add_team_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/alert.go b/alert/alert.go index fe69026..a6a58e4 100644 --- a/alert/alert.go +++ b/alert/alert.go @@ -2,7 +2,7 @@ package alert import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/alert/assign_request.go b/alert/assign_request.go index 0b3cf00..2982272 100644 --- a/alert/assign_request.go +++ b/alert/assign_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/close_alert_request.go b/alert/close_alert_request.go index efb94f4..87eabc4 100644 --- a/alert/close_alert_request.go +++ b/alert/close_alert_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/count_alerts_request.go b/alert/count_alerts_request.go index 0637dc7..5f4f450 100644 --- a/alert/count_alerts_request.go +++ b/alert/count_alerts_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type CountAlertsRequest struct { diff --git a/alert/create_alert_attachment_request.go b/alert/create_alert_attachment_request.go index 5bede60..5ee61da 100644 --- a/alert/create_alert_attachment_request.go +++ b/alert/create_alert_attachment_request.go @@ -8,7 +8,7 @@ import ( "path" "strings" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type CreateAlertAttachmentRequest struct { diff --git a/alert/create_alert_request.go b/alert/create_alert_request.go index 6a7934d..9cfa89e 100644 --- a/alert/create_alert_request.go +++ b/alert/create_alert_request.go @@ -4,7 +4,7 @@ import ( "errors" "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type CreateAlertRequest struct { diff --git a/alert/create_saved_search_request.go b/alert/create_saved_search_request.go index 8f92ff4..aa6c245 100644 --- a/alert/create_saved_search_request.go +++ b/alert/create_saved_search_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/delete_alert_request.go b/alert/delete_alert_request.go index af4022a..c183cf2 100644 --- a/alert/delete_alert_request.go +++ b/alert/delete_alert_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type DeleteAlertRequest struct { diff --git a/alert/delete_attachment_request.go b/alert/delete_attachment_request.go index 6114f41..99fa321 100644 --- a/alert/delete_attachment_request.go +++ b/alert/delete_attachment_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/delete_saved_search_request.go b/alert/delete_saved_search_request.go index 27b6113..e49fa9d 100644 --- a/alert/delete_saved_search_request.go +++ b/alert/delete_saved_search_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type DeleteSavedSearchRequest struct { diff --git a/alert/escalate_to_next_request.go b/alert/escalate_to_next_request.go index e24384f..ebc8553 100644 --- a/alert/escalate_to_next_request.go +++ b/alert/escalate_to_next_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/execute_custom_action.go b/alert/execute_custom_action.go index 704a1b2..95a2b52 100644 --- a/alert/execute_custom_action.go +++ b/alert/execute_custom_action.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/get_alert_request.go b/alert/get_alert_request.go index 9aa1758..7495690 100644 --- a/alert/get_alert_request.go +++ b/alert/get_alert_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type GetAlertRequest struct { diff --git a/alert/get_attachment_request.go b/alert/get_attachment_request.go index 27ee9ec..e7e5419 100644 --- a/alert/get_attachment_request.go +++ b/alert/get_attachment_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/get_request_status_request.go b/alert/get_request_status_request.go index 33adf79..e3e638a 100644 --- a/alert/get_request_status_request.go +++ b/alert/get_request_status_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/get_saved_search_request.go b/alert/get_saved_search_request.go index 949eb8a..f41ed55 100644 --- a/alert/get_saved_search_request.go +++ b/alert/get_saved_search_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type GetSavedSearchRequest struct { diff --git a/alert/list_alert_logs_request.go b/alert/list_alert_logs_request.go index f88cbed..6f404fe 100644 --- a/alert/list_alert_logs_request.go +++ b/alert/list_alert_logs_request.go @@ -4,14 +4,14 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type ListAlertLogsRequest struct { client.BaseRequest IdentifierType AlertIdentifier IdentifierValue string - Offset string + Offset int Direction RequestDirection Order Order Limit uint32 @@ -47,8 +47,8 @@ func (r *ListAlertLogsRequest) RequestParams() map[string]string { params["identifierType"] = "id" } - if r.Offset != "" { - params["offset"] = r.Offset + if r.Offset != 0 { + params["offset"] = strconv.Itoa(r.Offset) } if r.Order == Asc { diff --git a/alert/list_alert_notes_request.go b/alert/list_alert_notes_request.go index e88b531..05b5822 100644 --- a/alert/list_alert_notes_request.go +++ b/alert/list_alert_notes_request.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type ListAlertNotesRequest struct { diff --git a/alert/list_alert_recipient_request.go b/alert/list_alert_recipient_request.go index d58bb13..9df614d 100644 --- a/alert/list_alert_recipient_request.go +++ b/alert/list_alert_recipient_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type ListAlertRecipientRequest struct { diff --git a/alert/list_alert_request.go b/alert/list_alert_request.go index 7bb77f4..a630eb7 100644 --- a/alert/list_alert_request.go +++ b/alert/list_alert_request.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type ListAlertRequest struct { diff --git a/alert/list_attachments_request.go b/alert/list_attachments_request.go index d1f9df5..d7dc629 100644 --- a/alert/list_attachments_request.go +++ b/alert/list_attachments_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/list_saved_search_request.go b/alert/list_saved_search_request.go index ba8e2fa..0b1173c 100644 --- a/alert/list_saved_search_request.go +++ b/alert/list_saved_search_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type ListSavedSearchRequest struct { diff --git a/alert/remove_details_request.go b/alert/remove_details_request.go index 5365079..5de9b84 100644 --- a/alert/remove_details_request.go +++ b/alert/remove_details_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/remove_tags_request.go b/alert/remove_tags_request.go index 758887d..60805b6 100644 --- a/alert/remove_tags_request.go +++ b/alert/remove_tags_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/result.go b/alert/result.go index bc9fdf6..4463795 100644 --- a/alert/result.go +++ b/alert/result.go @@ -1,8 +1,9 @@ package alert import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" "time" + + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Alert struct { @@ -37,7 +38,8 @@ type Integration struct { type ListAlertResult struct { client.ResultMetadata - Alerts []Alert `json:"data"` + Alerts []Alert `json:"data"` + Paging map[string]string `json:"paging,omitempty"` } type RequestStatusResult struct { diff --git a/alert/snooze_request.go b/alert/snooze_request.go index 9c886f4..9a2c6bc 100644 --- a/alert/snooze_request.go +++ b/alert/snooze_request.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/unacknowledge_request.go b/alert/unacknowledge_request.go index 7c44883..9a41813 100644 --- a/alert/unacknowledge_request.go +++ b/alert/unacknowledge_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/update_description_request.go b/alert/update_description_request.go index eedae3d..986400b 100644 --- a/alert/update_description_request.go +++ b/alert/update_description_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/update_message_request.go b/alert/update_message_request.go index d777730..2879979 100644 --- a/alert/update_message_request.go +++ b/alert/update_message_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/update_priority_request.go b/alert/update_priority_request.go index 4bda019..a498549 100644 --- a/alert/update_priority_request.go +++ b/alert/update_priority_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/alert/update_saved_search_request.go b/alert/update_saved_search_request.go index 2211adb..ef3823d 100644 --- a/alert/update_saved_search_request.go +++ b/alert/update_saved_search_request.go @@ -3,7 +3,7 @@ package alert import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/contact/contact.go b/contact/contact.go index c060d32..117126f 100644 --- a/contact/contact.go +++ b/contact/contact.go @@ -2,7 +2,7 @@ package contact import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/contact/request.go b/contact/request.go index 07d64d5..57b8f2d 100644 --- a/contact/request.go +++ b/contact/request.go @@ -3,7 +3,7 @@ package contact import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/contact/result.go b/contact/result.go index 0f469cf..decea06 100644 --- a/contact/result.go +++ b/contact/result.go @@ -1,6 +1,6 @@ package contact -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type Contact struct { Id string `json:"id"` diff --git a/custom_user_role/custom_user_role.go b/custom_user_role/custom_user_role.go index 620c064..4f66fd0 100644 --- a/custom_user_role/custom_user_role.go +++ b/custom_user_role/custom_user_role.go @@ -1,7 +1,7 @@ package custom_user_role import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "golang.org/x/net/context" ) diff --git a/custom_user_role/request.go b/custom_user_role/request.go index 5aafa24..8c0e3ec 100644 --- a/custom_user_role/request.go +++ b/custom_user_role/request.go @@ -3,7 +3,7 @@ package custom_user_role import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/custom_user_role/result.go b/custom_user_role/result.go index 3371d7b..d14b097 100644 --- a/custom_user_role/result.go +++ b/custom_user_role/result.go @@ -1,6 +1,6 @@ package custom_user_role -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type CreateResult struct { client.ResultMetadata diff --git a/deployment/create_deployment_request.go b/deployment/create_deployment_request.go index a719074..fc803d4 100644 --- a/deployment/create_deployment_request.go +++ b/deployment/create_deployment_request.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type CreateDeploymentRequest struct { diff --git a/deployment/deployment.go b/deployment/deployment.go index 5e98e59..6a02f95 100644 --- a/deployment/deployment.go +++ b/deployment/deployment.go @@ -2,7 +2,7 @@ package deployment import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/deployment/get_deployment_request.go b/deployment/get_deployment_request.go index a5a6c95..e211625 100644 --- a/deployment/get_deployment_request.go +++ b/deployment/get_deployment_request.go @@ -4,7 +4,7 @@ import ( "errors" "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type GetDeploymentRequest struct { diff --git a/deployment/get_request_status_request.go b/deployment/get_request_status_request.go index 2eb6c5a..38a6ef0 100644 --- a/deployment/get_request_status_request.go +++ b/deployment/get_request_status_request.go @@ -3,7 +3,7 @@ package deployment import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/deployment/result.go b/deployment/result.go index 3051529..a5fbe86 100644 --- a/deployment/result.go +++ b/deployment/result.go @@ -1,7 +1,7 @@ package deployment import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "time" ) diff --git a/deployment/update_state_request.go b/deployment/update_state_request.go index 15427bd..73b99c1 100644 --- a/deployment/update_state_request.go +++ b/deployment/update_state_request.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/escalation/escalation.go b/escalation/escalation.go index 1df56b8..9e2c6c1 100644 --- a/escalation/escalation.go +++ b/escalation/escalation.go @@ -2,7 +2,7 @@ package escalation import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/escalation/escalation_test.go b/escalation/escalation_test.go index ccc138c..411ce23 100644 --- a/escalation/escalation_test.go +++ b/escalation/escalation_test.go @@ -1,7 +1,7 @@ package escalation import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "github.com/stretchr/testify/assert" "testing" diff --git a/escalation/request.go b/escalation/request.go index ec4ac02..f3f6c8b 100644 --- a/escalation/request.go +++ b/escalation/request.go @@ -3,8 +3,8 @@ package escalation import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" ) diff --git a/escalation/result.go b/escalation/result.go index 96ce755..061a771 100644 --- a/escalation/result.go +++ b/escalation/result.go @@ -1,8 +1,8 @@ package escalation import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type CreateResult struct { diff --git a/forwarding_rule/forwarding_rule.go b/forwarding_rule/forwarding_rule.go index 4b07daa..f89f3b5 100644 --- a/forwarding_rule/forwarding_rule.go +++ b/forwarding_rule/forwarding_rule.go @@ -2,7 +2,7 @@ package forwarding_rule import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/forwarding_rule/request.go b/forwarding_rule/request.go index 24d39a7..b1f7454 100644 --- a/forwarding_rule/request.go +++ b/forwarding_rule/request.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/forwarding_rule/result.go b/forwarding_rule/result.go index a1541ab..2c972cf 100644 --- a/forwarding_rule/result.go +++ b/forwarding_rule/result.go @@ -1,7 +1,7 @@ package forwarding_rule import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "time" ) diff --git a/go.mod b/go.mod index c76d2f7..ae96111 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/opsgenie/opsgenie-go-sdk-v2 +module github.com/joeyparsons/opsgenie-go-sdk-v2 go 1.12 diff --git a/heartbeat/heartbeat.go b/heartbeat/heartbeat.go index 2c249a3..4388c13 100644 --- a/heartbeat/heartbeat.go +++ b/heartbeat/heartbeat.go @@ -2,7 +2,7 @@ package heartbeat import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/heartbeat/heartbeat_test.go b/heartbeat/heartbeat_test.go index 0067b66..1ded368 100644 --- a/heartbeat/heartbeat_test.go +++ b/heartbeat/heartbeat_test.go @@ -1,7 +1,7 @@ package heartbeat import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "github.com/stretchr/testify/assert" "testing" diff --git a/heartbeat/request.go b/heartbeat/request.go index 83ea4d5..98482cc 100644 --- a/heartbeat/request.go +++ b/heartbeat/request.go @@ -4,8 +4,8 @@ import ( "errors" "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type pingRequest struct { diff --git a/heartbeat/result.go b/heartbeat/result.go index bc3ebb5..a59374c 100644 --- a/heartbeat/result.go +++ b/heartbeat/result.go @@ -1,8 +1,8 @@ package heartbeat import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type Heartbeat struct { diff --git a/incident/incident.go b/incident/incident.go index c5625fc..133d7f5 100644 --- a/incident/incident.go +++ b/incident/incident.go @@ -2,7 +2,7 @@ package incident import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/incident/request.go b/incident/request.go index 05a5683..cc5200e 100644 --- a/incident/request.go +++ b/incident/request.go @@ -5,7 +5,7 @@ import ( "strconv" "strings" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/incident/result.go b/incident/result.go index b8d35e7..a3a954f 100644 --- a/incident/result.go +++ b/incident/result.go @@ -1,7 +1,7 @@ package incident import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "time" ) diff --git a/integration/integration.go b/integration/integration.go index 686b41c..ed271ce 100644 --- a/integration/integration.go +++ b/integration/integration.go @@ -2,7 +2,7 @@ package integration import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/integration/integration_test.go b/integration/integration_test.go index 82999c2..c39e8c1 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -1,7 +1,7 @@ package integration import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "github.com/stretchr/testify/assert" "testing" diff --git a/integration/request.go b/integration/request.go index d1f6f33..f7c43cc 100644 --- a/integration/request.go +++ b/integration/request.go @@ -3,8 +3,8 @@ package integration import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" ) diff --git a/integration/result.go b/integration/result.go index d46becd..7618e76 100644 --- a/integration/result.go +++ b/integration/result.go @@ -1,8 +1,8 @@ package integration import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type ListResult struct { diff --git a/logs/logs.go b/logs/logs.go index 194a230..49c8bc9 100644 --- a/logs/logs.go +++ b/logs/logs.go @@ -2,7 +2,7 @@ package logs import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Log struct { diff --git a/logs/request.go b/logs/request.go index 8b4db93..0551db7 100644 --- a/logs/request.go +++ b/logs/request.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/logs/result.go b/logs/result.go index 800b3fa..6a14b5c 100644 --- a/logs/result.go +++ b/logs/result.go @@ -1,7 +1,7 @@ package logs import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" "io/ioutil" "net/http" diff --git a/maintenance/maintenance.go b/maintenance/maintenance.go index f3b7984..40543d6 100644 --- a/maintenance/maintenance.go +++ b/maintenance/maintenance.go @@ -2,7 +2,7 @@ package maintenance import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/maintenance/request.go b/maintenance/request.go index 7b14341..102a57c 100644 --- a/maintenance/request.go +++ b/maintenance/request.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/maintenance/result.go b/maintenance/result.go index 87d0492..1ea7765 100644 --- a/maintenance/result.go +++ b/maintenance/result.go @@ -1,6 +1,6 @@ package maintenance -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type Maintenance struct { Id string `json:"id"` diff --git a/notification/notification.go b/notification/notification.go index 5767682..c0dd095 100644 --- a/notification/notification.go +++ b/notification/notification.go @@ -2,7 +2,7 @@ package notification import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/notification/notification_test.go b/notification/notification_test.go index 4eb0e79..343d0e9 100644 --- a/notification/notification_test.go +++ b/notification/notification_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "github.com/stretchr/testify/assert" ) diff --git a/notification/request.go b/notification/request.go index f957775..3ccf849 100644 --- a/notification/request.go +++ b/notification/request.go @@ -3,8 +3,8 @@ package notification import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" ) diff --git a/notification/result.go b/notification/result.go index ea39527..f8689f0 100644 --- a/notification/result.go +++ b/notification/result.go @@ -1,8 +1,8 @@ package notification import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type Parent struct { diff --git a/og/entity.go b/og/entity.go index 401e257..8b44ea5 100644 --- a/og/entity.go +++ b/og/entity.go @@ -1,8 +1,8 @@ package og import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" "time" ) diff --git a/policy/policy.go b/policy/policy.go index 2793a1b..23c166b 100644 --- a/policy/policy.go +++ b/policy/policy.go @@ -3,7 +3,7 @@ package policy import ( "context" "errors" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/policy/policy_test.go b/policy/policy_test.go index 0c89b97..052cdf0 100644 --- a/policy/policy_test.go +++ b/policy/policy_test.go @@ -1,8 +1,8 @@ package policy import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "github.com/stretchr/testify/assert" "testing" diff --git a/policy/request.go b/policy/request.go index 568becf..e3f6359 100644 --- a/policy/request.go +++ b/policy/request.go @@ -4,9 +4,9 @@ import ( "errors" "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type CreateAlertPolicyRequest struct { diff --git a/policy/result.go b/policy/result.go index 6927163..966c13f 100644 --- a/policy/result.go +++ b/policy/result.go @@ -1,8 +1,8 @@ package policy import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type CreateResult struct { diff --git a/schedule/request.go b/schedule/request.go index a1f9b7a..bd2601c 100644 --- a/schedule/request.go +++ b/schedule/request.go @@ -5,8 +5,8 @@ import ( "strconv" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" ) diff --git a/schedule/result.go b/schedule/result.go index a28475c..39b37f2 100644 --- a/schedule/result.go +++ b/schedule/result.go @@ -2,8 +2,8 @@ package schedule import ( "errors" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "io/ioutil" "net/http" "time" diff --git a/schedule/schedule.go b/schedule/schedule.go index ae65316..95139dd 100644 --- a/schedule/schedule.go +++ b/schedule/schedule.go @@ -2,7 +2,7 @@ package schedule import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "os" ) diff --git a/schedule/schedule_override_request.go b/schedule/schedule_override_request.go index 6a3a9b8..c6034fa 100644 --- a/schedule/schedule_override_request.go +++ b/schedule/schedule_override_request.go @@ -5,7 +5,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type RotationIdentifier struct { diff --git a/schedule/schedule_override_result.go b/schedule/schedule_override_result.go index cfb4b0b..ef24aed 100644 --- a/schedule/schedule_override_result.go +++ b/schedule/schedule_override_result.go @@ -1,7 +1,7 @@ package schedule import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "time" ) diff --git a/schedule/schedule_test.go b/schedule/schedule_test.go index 7c6a090..13e2177 100644 --- a/schedule/schedule_test.go +++ b/schedule/schedule_test.go @@ -1,7 +1,7 @@ package schedule import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "github.com/stretchr/testify/assert" "testing" diff --git a/schedule/who_is_oncall_request.go b/schedule/who_is_oncall_request.go index 8b823e0..ea957a4 100644 --- a/schedule/who_is_oncall_request.go +++ b/schedule/who_is_oncall_request.go @@ -4,7 +4,7 @@ import ( "net/http" "time" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type GetOnCallsRequest struct { diff --git a/schedule/who_is_oncall_result.go b/schedule/who_is_oncall_result.go index 78c4c4b..95a5f8f 100644 --- a/schedule/who_is_oncall_result.go +++ b/schedule/who_is_oncall_result.go @@ -1,8 +1,8 @@ package schedule import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" "io/ioutil" "net/http" diff --git a/service/service.go b/service/service.go index 53d8ce7..3d42530 100644 --- a/service/service.go +++ b/service/service.go @@ -2,7 +2,7 @@ package service import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/service/service_audience_template_request.go b/service/service_audience_template_request.go index 0295dd0..0cda59c 100644 --- a/service/service_audience_template_request.go +++ b/service/service_audience_template_request.go @@ -3,8 +3,8 @@ package service import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" ) diff --git a/service/service_audience_template_result.go b/service/service_audience_template_result.go index 28cafbf..172fddc 100644 --- a/service/service_audience_template_result.go +++ b/service/service_audience_template_result.go @@ -1,6 +1,6 @@ package service -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type UpdateAudienceTemplateResult struct { client.ResultMetadata diff --git a/service/service_incident_rule_request.go b/service/service_incident_rule_request.go index 3926fb9..4bfa892 100644 --- a/service/service_incident_rule_request.go +++ b/service/service_incident_rule_request.go @@ -3,9 +3,9 @@ package service import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/pkg/errors" ) diff --git a/service/service_incident_rule_result.go b/service/service_incident_rule_result.go index 820cd3f..cba15af 100644 --- a/service/service_incident_rule_result.go +++ b/service/service_incident_rule_result.go @@ -1,8 +1,8 @@ package service import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type CreateIncidentRuleResult struct { diff --git a/service/service_incident_rule_test.go b/service/service_incident_rule_test.go index 835d8ac..79843aa 100644 --- a/service/service_incident_rule_test.go +++ b/service/service_incident_rule_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" "github.com/pkg/errors" "github.com/stretchr/testify/assert" ) diff --git a/service/service_incident_template_request.go b/service/service_incident_template_request.go index afb8793..ca37069 100644 --- a/service/service_incident_template_request.go +++ b/service/service_incident_template_request.go @@ -3,7 +3,7 @@ package service import ( "net/http" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/service/service_incident_template_result.go b/service/service_incident_template_result.go index e7b4fde..69a26d0 100644 --- a/service/service_incident_template_result.go +++ b/service/service_incident_template_result.go @@ -1,6 +1,6 @@ package service -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type CreateIncidentTemplateResult struct { client.ResultMetadata diff --git a/service/service_incident_template_test.go b/service/service_incident_template_test.go index c0800bf..ea88dc2 100644 --- a/service/service_incident_template_test.go +++ b/service/service_incident_template_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/opsgenie/opsgenie-go-sdk-v2/alert" + "github.com/joeyparsons/opsgenie-go-sdk-v2/alert" "github.com/pkg/errors" "github.com/stretchr/testify/assert" ) diff --git a/service/service_request.go b/service/service_request.go index d086cc9..0177eab 100644 --- a/service/service_request.go +++ b/service/service_request.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/service/service_result.go b/service/service_result.go index 76b7cba..2c420ed 100644 --- a/service/service_result.go +++ b/service/service_result.go @@ -1,6 +1,6 @@ package service -import "github.com/opsgenie/opsgenie-go-sdk-v2/client" +import "github.com/joeyparsons/opsgenie-go-sdk-v2/client" type Service struct { Id string `json:"id"` diff --git a/team/request.go b/team/request.go index cfdae6c..8c7a79e 100644 --- a/team/request.go +++ b/team/request.go @@ -5,8 +5,8 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type Identifier uint32 diff --git a/team/result.go b/team/result.go index 96be213..64fbc1e 100644 --- a/team/result.go +++ b/team/result.go @@ -1,8 +1,8 @@ package team import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" ) type TeamMeta struct { diff --git a/team/team.go b/team/team.go index 791bc8d..9ce126d 100644 --- a/team/team.go +++ b/team/team.go @@ -2,7 +2,7 @@ package team import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/team/team_test.go b/team/team_test.go index 74f78cb..c48be7c 100644 --- a/team/team_test.go +++ b/team/team_test.go @@ -2,7 +2,7 @@ package team import ( "errors" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "github.com/stretchr/testify/assert" "testing" ) diff --git a/user/user.go b/user/user.go index b02aab6..3cac2d9 100644 --- a/user/user.go +++ b/user/user.go @@ -2,7 +2,7 @@ package user import ( "context" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" ) type Client struct { diff --git a/user/user_request.go b/user/user_request.go index a697957..1f30a57 100644 --- a/user/user_request.go +++ b/user/user_request.go @@ -4,7 +4,7 @@ import ( "net/http" "strconv" - "github.com/opsgenie/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" "github.com/pkg/errors" ) diff --git a/user/user_result.go b/user/user_result.go index 7acdd9d..70d30e2 100644 --- a/user/user_result.go +++ b/user/user_result.go @@ -1,8 +1,8 @@ package user import ( - "github.com/opsgenie/opsgenie-go-sdk-v2/client" - "github.com/opsgenie/opsgenie-go-sdk-v2/og" + "github.com/joeyparsons/opsgenie-go-sdk-v2/client" + "github.com/joeyparsons/opsgenie-go-sdk-v2/og" "time" )