mirror of
https://github.com/jimeh/build-emacs-for-macos.git
synced 2026-02-19 03:46:40 +00:00
10 lines
143 B
Ruby
10 lines
143 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative './common'
|
|
require_relative './output'
|
|
|
|
class BaseAction
|
|
include Common
|
|
include Output
|
|
end
|