2024-10-27 20:41:35 +01:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#
|
|
|
|
# SPDX-FileCopyrightText: 2024 Glenn Y. Rolland <glenux@glenux.net>
|
|
|
|
# Copyright © 2024 Glenn Y. Rolland <glenux@glenux.net>
|
|
|
|
|
2024-01-14 20:31:38 +01:00
|
|
|
module GX::Parsers
|
|
|
|
abstract class AbstractParser
|
|
|
|
abstract def build(parser : OptionParser, ancestors : BreadCrumbs, config : Config)
|
|
|
|
end
|
|
|
|
end
|