mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
12 lines
429 B
Go
12 lines
429 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
/*
|
|
Package fifo implements functions to create and open a fifo for inter-process
|
|
communication in an OS agnostic way. A few assumptions should be made when
|
|
using this package. First, New() must always be called before Open(). Second
|
|
Open() returns an io.ReadWriteCloser that is only connected with the
|
|
io.ReadWriteCloser returned from New().
|
|
*/
|
|
package fifo
|