io.github.darvld.wireframe.WireframeCompilerPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler-core Show documentation
Show all versions of compiler-core Show documentation
A GraphQL server library for Kotlin.
package io.github.darvld.wireframe
import graphql.schema.GraphQLNamedType
public interface WireframeCompilerPlugin {
public fun processType(type: GraphQLNamedType, environment: ProcessingEnvironment)
public fun beforeProcessing(environment: ProcessingEnvironment) {
// Unit
}
public fun afterProcessing(environment: ProcessingEnvironment) {
// Unit
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy