1// +build freebsd
2
3package libcontainer
4
5import (
6	"errors"
7)
8
9// NewConsole returns an initalized console that can be used within a container by copying bytes
10// from the master side to the slave that is attached as the tty for the container's init process.
11func NewConsole(uid, gid int) (Console, error) {
12	return nil, errors.New("libcontainer console is not supported on FreeBSD")
13}
14