22 lines
422 B
Swift
22 lines
422 B
Swift
//
|
|
// EmojiScripts.swift
|
|
//
|
|
//
|
|
// Created by Niklas Amslgruber on 12.06.23.
|
|
//
|
|
|
|
import Foundation
|
|
import ArgumentParser
|
|
|
|
@main
|
|
struct EmojiScripts: ParsableCommand, AsyncParsableCommand {
|
|
|
|
static let configuration: CommandConfiguration = CommandConfiguration(
|
|
commandName: "emojis",
|
|
abstract: "Manage Emojis from Unicode",
|
|
subcommands: [
|
|
EmojiDownloader.self,
|
|
]
|
|
)
|
|
}
|