This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.HashMap; | |
import spark.Filter; | |
import spark.Request; | |
import spark.Response; | |
import spark.Spark; | |
/** | |
* Really simple helper for enabling CORS in a spark application; | |
*/ | |
public final class CorsFilter { |