mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 10:55:42 +03:00
19 lines
410 B
Go
19 lines
410 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build windows
|
|
|
|
package template
|
|
|
|
import (
|
|
"github.com/hashicorp/consul-template/renderer"
|
|
)
|
|
|
|
func RenderFn(taskID, taskDir string, sandboxEnabled bool) func(*renderer.RenderInput) (*renderer.RenderResult, error) {
|
|
return nil
|
|
}
|
|
|
|
func ReaderFn(taskID, taskDir string, sandboxEnabled bool) func(string) ([]byte, error) {
|
|
return nil
|
|
}
|