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.
1 parent f606349 commit 6a88485Copy full SHA for 6a88485
Sources/CallableKitMacros/CallableMacro.swift
@@ -1,3 +1,4 @@
1
+import Foundation
2
import SwiftSyntax
3
import SwiftSyntaxMacros
4
example/test.sh
@@ -2,15 +2,15 @@
set -o pipefail
swift package --allow-writing-to-package-directory codegen
5
-swift build -c release
+swift build
6
7
APP=${1:-}
8
case ${APP} in
9
"vapor")
10
- .build/release/VaporServer &
+ .build/debug/VaporServer &
11
;;
12
"hummingbird")
13
- .build/release/HBServer &
+ .build/debug/HBServer &
14
15
*)
16
echo "$0 <vapor|hummingbird>"
@@ -27,6 +27,6 @@ until curl -s -o /dev/null http://localhost:8080/; do
27
sleep 0.1
28
done
29
30
-.build/release/Client
+.build/debug/Client
31
cd TSClient
32
npm install && npm run run
0 commit comments