We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b7682b + c61e17e commit 43528deCopy full SHA for 43528de
Sources/unidocd/Main.swift
@@ -10,7 +10,7 @@ import NIOCore
10
import NIOSSL
11
import Symbols
12
import SystemIO
13
-import SymbolGraphCompiler
+import SymbolGraphBuilder
14
import UnidocClient
15
16
struct Main
@@ -117,7 +117,11 @@ extension Main
117
@main
118
extension Main:AsyncParsableCommand
119
{
120
- static var configuration:CommandConfiguration { .init(commandName: "unidocd") }
+ static var configuration:CommandConfiguration
121
+ {
122
+ .init(commandName: "unidocd",
123
+ subcommands: [SSGC.SlaveCommand.self])
124
+ }
125
126
mutating
127
func run() async throws
0 commit comments