-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
28 lines (25 loc) · 844 Bytes
/
main.go
File metadata and controls
28 lines (25 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package main
import (
"fmt"
_ "github.com/agentuity/go-common/authentication"
_ "github.com/agentuity/go-common/cache"
_ "github.com/agentuity/go-common/compress"
_ "github.com/agentuity/go-common/crypto"
_ "github.com/agentuity/go-common/dns"
_ "github.com/agentuity/go-common/env"
_ "github.com/agentuity/go-common/eventing"
_ "github.com/agentuity/go-common/llm"
_ "github.com/agentuity/go-common/logger"
_ "github.com/agentuity/go-common/message"
_ "github.com/agentuity/go-common/network"
_ "github.com/agentuity/go-common/request"
_ "github.com/agentuity/go-common/slice"
_ "github.com/agentuity/go-common/stream"
_ "github.com/agentuity/go-common/string"
_ "github.com/agentuity/go-common/sys"
_ "github.com/agentuity/go-common/telemetry"
_ "github.com/agentuity/go-common/tui"
)
func main() {
fmt.Println("Hi")
}