Skip to content

Commit 1012986

Browse files
committed
add missing imports
1 parent 0ecbb57 commit 1012986

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

Sources/GRPCCodeGen/CodeGenerationRequest.swift

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* limitations under the License.
1515
*/
1616

17+
import Foundation
18+
1719
/// Describes the services, dependencies and trivia from an IDL file,
1820
/// and the IDL itself through its specific serializer and deserializer.
1921
public struct CodeGenerationRequest {

Sources/GRPCCodeGen/Internal/Translator/Docs.swift

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* limitations under the License.
1515
*/
1616

17+
import Foundation
18+
1719
package enum Docs {
1820
package static func suffix(_ header: String, withDocs footer: String) -> String {
1921
if footer.isEmpty {

Tests/GRPCCoreTests/Configuration/ServiceConfigCodingTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import Foundation
1818
import GRPCCore
19+
import SwiftProtobuf
1920
import XCTest
2021

2122
final class ServiceConfigCodingTests: XCTestCase {

Tests/GRPCCoreTests/Test Utilities/Services/HelloWorld.swift

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
import Foundation
1617
import GRPCCore
1718

1819
struct HelloWorld: RegistrableRPCService {

0 commit comments

Comments
 (0)