github.hscsec.cn/u-root/u-root@v7.0.0+incompatible/cmds/exp/console/console_plan9.go (about)

     1  // Copyright 2015-2020 the u-root Authors. All rights reserved
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package main
     6  
     7  import (
     8  	"fmt"
     9  	"io"
    10  )
    11  
    12  func console(serial string) (io.Reader, io.Writer, error) {
    13  	return nil, nil, fmt.Errorf("not yet")
    14  }