pedrozath/coltrane

View on GitHub
lib/coltrane/commands/get_notes.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
module Coltrane
  module Commands
    class GetNotes < Command
      def run(*notes)
        Theory::NoteSet[*notes]
      end
    end
  end
end