From 2e4f0e9a8d7da08d2f578a5c20dabddf71c7aae6 Mon Sep 17 00:00:00 2001 From: a Date: Thu, 6 Jul 2023 09:37:58 +0100 Subject: [PATCH] redo --- {helper => algo}/mutex.go | 2 +- algo/ucb.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {helper => algo}/mutex.go (97%) diff --git a/helper/mutex.go b/algo/mutex.go similarity index 97% rename from helper/mutex.go rename to algo/mutex.go index 0d17fe3..42c58bd 100644 --- a/helper/mutex.go +++ b/algo/mutex.go @@ -1,4 +1,4 @@ -package helper +package algo import ( "sync" diff --git a/algo/ucb.go b/algo/ucb.go index 2bfe906..d4c0014 100644 --- a/algo/ucb.go +++ b/algo/ucb.go @@ -1,4 +1,4 @@ -package ucb +package algo import ( "errors"