13 lines
157 B
Go
13 lines
157 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"git.nils.zone/clientserverapi/server/storage"
|
||
|
)
|
||
|
|
||
|
func check(err error) {
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
storage.GetComputers()
|
||
|
}
|