Type-safe GraphQL client generator for Gleam

conditinally import simplifile

Changed files
+6 -2
src
squall
internal
+3 -1
src/squall.gleam
··· 8 8 import gleam/list 9 9 import gleam/result 10 10 import gleam/string 11 - import simplifile 12 11 import squall/adapter.{type HttpAdapter} 12 + 13 + @target(erlang) 14 + import simplifile 13 15 import squall/internal/codegen 14 16 import squall/internal/discovery 15 17 import squall/internal/error
+3 -1
src/squall/internal/discovery.gleam
··· 2 2 import gleam/list 3 3 import gleam/result 4 4 import gleam/string 5 - import simplifile 6 5 import squall/internal/error.{type Error} 6 + 7 + @target(erlang) 8 + import simplifile 7 9 8 10 pub type GraphQLFile { 9 11 GraphQLFile(path: String, operation_name: String, content: String)