mirror of https://gitee.com/openkylin/genmai.git
commit
09bc5ceb05
|
@ -0,0 +1,41 @@
|
|||
////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Filename: InterIO.go
|
||||
//
|
||||
// Version: 1.0
|
||||
// Created: 2022年11月07日 12时08分53秒
|
||||
// Revision: none
|
||||
// Compiler: go
|
||||
//
|
||||
// Author: alpha
|
||||
// Organization: alpha
|
||||
// Contacts: chenxinquan@kylinos.com
|
||||
//
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Description:
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Log:
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Todo:
|
||||
//
|
||||
////////////////////////////////////////////////////////////////
|
||||
|
||||
package Interpreter
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
)
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// InterIO struct
|
||||
type InterIO struct {
|
||||
reader *bufio.Reader
|
||||
writer *bufio.Writer
|
||||
}
|
||||
|
|
@ -29,14 +29,11 @@
|
|||
package Interpreter
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
)
|
||||
|
||||
type InterIO struct {
|
||||
reader *bufio.Reader
|
||||
writer *bufio.Writer
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// Interpreter interface
|
||||
type Interpreter interface {
|
||||
}
|
||||
process(path string) (InterIO, error)
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue