mirror of
https://github.com/Hilbis/Hilbish
synced 2025-07-03 01:32:03 +00:00
instead of having ugly `_user` and `_ver` variables, `hilbish.user` and `hilbish.version` is used
12 lines
301 B
Go
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"`
|
|
}
|
|
|