2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-07-03 01:32:03 +00:00
Hilbish/hilbish.go
sammyette e29ba6a0d5
feat!: move username and version access to hilbish table
instead of having ugly `_user` and `_ver` variables,
`hilbish.user` and `hilbish.version` is used
2021-05-16 15:53:21 -04:00

12 lines
301 B
Go

// Here is the core api for the hilbi shell itself
// Basically, stuff about the shell itself and other functions
// go here.
package main
type Hilbish struct {
Version string `luar:"version"` // Hilbish's version
User string `luar:"user"` // Name of the user
Hostname string `luar:"hostname"`
}