Documentation ¶
Overview ¶
Package stdlib contains all of the basic building blocks of OS operation. It is intended to be cross platform and minimalistic in scale. Its largest sublibrary is "sys" and to use it simply use the syntax `load("sys", "myFunc")` where `myFunc` is one of the premade library functions.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Dependencies ¶
type Dependencies struct {
Assets http.FileSystem
}
Dependencies holds library dependencies that may be accessed by stdlib functions.
type Option ¶
type Option func(*Dependencies)
An Option enables configuration of stdlib dependencies.
func WithAssets ¶
func WithAssets(fs http.FileSystem) Option
WithAssets loading assets from the provided filesystem.
Click to show internal directories.
Click to hide internal directories.