config.go

1// Package config contains configuration for GraphQL stuff.
2package config
3
4// Config holds configuration elements.
5type Config struct {
6	ReadOnly bool
7}