Coverage Summary for Class: GhostAutoConfiguration (com.ghost.serialization.spring)

Class Class, % Method, % Branch, % Line, % Instruction, %
GhostAutoConfiguration 100% (1/1) 100% (1/1) 100% (1/1) 100% (2/2)


 package com.ghost.serialization.spring
 
 import com.ghost.serialization.Ghost
 import org.springframework.boot.autoconfigure.AutoConfiguration
 import org.springframework.boot.autoconfigure.condition.ConditionalOnClass
 
 /**
  * Marker auto-configuration for Ghost Serialization in Spring Boot.
  * Web stack wiring: [GhostWebMvcAutoConfiguration], [GhostWebFluxAutoConfiguration].
  */
 @AutoConfiguration
 @ConditionalOnClass(Ghost::class)
 class GhostAutoConfiguration