go_engine/std/
io.rs

1// Copyright 2022 The Goscript 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
5extern crate self as go_engine;
6use crate::ffi::*;
7use go_vm::types::GosValue;
8
9#[derive(Ffi)]
10pub struct IoFfi;
11
12#[ffi_impl]
13impl IoFfi {}