From 329b8d44d2fcf7c6411804d32f001532a9ed435b Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Fri, 4 Nov 2022 08:22:12 -0300 Subject: [PATCH] move stuff back from nostr package to top level. because otherwise the path must be specified as github.com/fiatjaf/go-nostr/nostr, which is annoying. --- nostr/connection.go => connection.go | 0 nostr/event.go => event.go | 0 nostr/event_aux.go => event_aux.go | 0 nostr/event_test.go => event_test.go | 0 nostr/filter.go => filter.go | 0 nostr/filter_aux.go => filter_aux.go | 0 nostr/filter_test.go => filter_test.go | 0 nostr/helpers.go => helpers.go | 0 nostr/keys.go => keys.go | 0 nostr/normalize.go => normalize.go | 0 nostr/relaypool.go => relaypool.go | 0 nostr/subscription.go => subscription.go | 0 12 files changed, 0 insertions(+), 0 deletions(-) rename nostr/connection.go => connection.go (100%) rename nostr/event.go => event.go (100%) rename nostr/event_aux.go => event_aux.go (100%) rename nostr/event_test.go => event_test.go (100%) rename nostr/filter.go => filter.go (100%) rename nostr/filter_aux.go => filter_aux.go (100%) rename nostr/filter_test.go => filter_test.go (100%) rename nostr/helpers.go => helpers.go (100%) rename nostr/keys.go => keys.go (100%) rename nostr/normalize.go => normalize.go (100%) rename nostr/relaypool.go => relaypool.go (100%) rename nostr/subscription.go => subscription.go (100%) diff --git a/nostr/connection.go b/connection.go similarity index 100% rename from nostr/connection.go rename to connection.go diff --git a/nostr/event.go b/event.go similarity index 100% rename from nostr/event.go rename to event.go diff --git a/nostr/event_aux.go b/event_aux.go similarity index 100% rename from nostr/event_aux.go rename to event_aux.go diff --git a/nostr/event_test.go b/event_test.go similarity index 100% rename from nostr/event_test.go rename to event_test.go diff --git a/nostr/filter.go b/filter.go similarity index 100% rename from nostr/filter.go rename to filter.go diff --git a/nostr/filter_aux.go b/filter_aux.go similarity index 100% rename from nostr/filter_aux.go rename to filter_aux.go diff --git a/nostr/filter_test.go b/filter_test.go similarity index 100% rename from nostr/filter_test.go rename to filter_test.go diff --git a/nostr/helpers.go b/helpers.go similarity index 100% rename from nostr/helpers.go rename to helpers.go diff --git a/nostr/keys.go b/keys.go similarity index 100% rename from nostr/keys.go rename to keys.go diff --git a/nostr/normalize.go b/normalize.go similarity index 100% rename from nostr/normalize.go rename to normalize.go diff --git a/nostr/relaypool.go b/relaypool.go similarity index 100% rename from nostr/relaypool.go rename to relaypool.go diff --git a/nostr/subscription.go b/subscription.go similarity index 100% rename from nostr/subscription.go rename to subscription.go