source: code/trunk/cmd/aya/gcss_stub.go

Last change on this file was 87, checked in by Izuru Yakumo, 14 months ago

Add support for disabling features at build time

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 173 bytes
Line 
1//go:build nogcss
2package main
3
4import (
5 "errors"
6 "io"
7)
8
9func buildGCSS(path string, w io.Writer) error {
10 return errors.New("GCSS support was disabled at build time")
11}
Note: See TracBrowser for help on using the repository browser.