From 8fa45fbb66a3b668aaad6dcf084db216a1e05d96 Mon Sep 17 00:00:00 2001 From: kenjitheman Date: Thu, 15 Feb 2024 01:26:10 +0200 Subject: [PATCH] chore: change username --- LICENSE | 2 +- go.mod | 2 +- main.go | 2 +- tests/args_test.go | 2 +- tests/core_test.go | 2 +- tests/probe_test.go | 2 +- tests/reader_test.go | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 7388547..314985b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 btwkenji +Copyright (c) 2024 kenjitheman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/go.mod b/go.mod index 54db691..07982ea 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/btwkenji/url-probe +module github.com/kenjitheman/url-probe go 1.21.3 diff --git a/main.go b/main.go index bca1fc1..9120c4d 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ import ( "log" "os" - "github.com/btwkenji/url-probe/core" + "github.com/kenjitheman/url-probe/core" ) func main() { diff --git a/tests/args_test.go b/tests/args_test.go index 1800801..0b88752 100644 --- a/tests/args_test.go +++ b/tests/args_test.go @@ -1,7 +1,7 @@ package tests import ( - "github.com/btwkenji/url-probe/core" + "github.com/kenjitheman/url-probe/core" "os" "testing" ) diff --git a/tests/core_test.go b/tests/core_test.go index a4136c0..357dec0 100644 --- a/tests/core_test.go +++ b/tests/core_test.go @@ -2,7 +2,7 @@ package tests import ( "testing" - "github.com/btwkenji/url-probe/core" + "github.com/kenjitheman/url-probe/core" ) func TestRun(t *testing.T) { diff --git a/tests/probe_test.go b/tests/probe_test.go index 14edf48..f1e2645 100644 --- a/tests/probe_test.go +++ b/tests/probe_test.go @@ -1,7 +1,7 @@ package tests import ( - "github.com/btwkenji/url-probe/core" + "github.com/kenjitheman/url-probe/core" "net/http" "net/http/httptest" "testing" diff --git a/tests/reader_test.go b/tests/reader_test.go index 83f087f..59e98b2 100644 --- a/tests/reader_test.go +++ b/tests/reader_test.go @@ -1,7 +1,7 @@ package tests import ( - "github.com/btwkenji/url-probe/core" + "github.com/kenjitheman/url-probe/core" "os" "testing" )