10 lines
179 B
Ruby
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
|