nostr-gem/lib/nostr.rb
2023-01-06 11:10:16 +07:00

10 lines
179 B
Ruby

# frozen_string_literal: true
require_relative "nostr/version"
# Encapsulates all the gem's logic
module Nostr
class Error < StandardError; end
# Your code goes here...
end