2023-10-25 14:01:46 +02:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#
|
|
|
|
# SPDX-FileCopyrightText: 2023 Glenn Y. Rolland <glenux@glenux.net>
|
|
|
|
# Copyright © 2023 Glenn Y. Rolland <glenux@glenux.net>
|
|
|
|
|
2023-10-20 11:29:54 +02:00
|
|
|
require "yaml"
|
|
|
|
require "colorize"
|
|
|
|
require "json"
|
|
|
|
|
2023-10-24 14:49:46 +02:00
|
|
|
require "./filesystems/gocryptfs"
|
2023-10-22 23:23:56 +02:00
|
|
|
require "./config"
|
|
|
|
require "./cli"
|
2023-10-20 11:29:54 +02:00
|
|
|
|
2023-10-22 23:23:56 +02:00
|
|
|
app = GX::Cli.new
|
2023-10-23 23:11:12 +02:00
|
|
|
app.parse_command_line(ARGV)
|
2023-10-22 23:23:56 +02:00
|
|
|
app.run
|
2023-10-20 11:29:54 +02:00
|
|
|
|
|
|
|
|