1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-26 07:29:11 +02:00
tmux-fingers/src/fingers/commands/version.cr
2023-09-27 15:21:48 +02:00

10 lines
129 B
Crystal

require "./base"
module Fingers::Commands
class Version < Base
def run
puts "#{Fingers::VERSION}"
end
end
end