https://github.com/alswl/aios
Abstract IO Streams(fork from github.com/cli/cli)
https://github.com/alswl/aios
Last synced: 10 months ago
JSON representation
Abstract IO Streams(fork from github.com/cli/cli)
- Host: GitHub
- URL: https://github.com/alswl/aios
- Owner: alswl
- License: mit
- Created: 2023-06-15T09:50:22.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-15T12:14:46.000Z (about 3 years ago)
- Last Synced: 2025-10-10T22:42:46.489Z (10 months ago)
- Language: Go
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aios
Abstract IO Streams(fork from github.com/cli/cli)
## How to use
```go
// in production
import "github.com/alswl/aios"
ios := aios.System()
// in testing
import "github.com/alswl/aios"
ios, stdin, stdout, stderr := aios.Test()
```
Read [MANUAL.md](./MANUAL.md) for more details please.