package main
type Developer struct {
Name string
Communities []string
Experiences []string
Hobbies []string
Cats []struct {
Name string
Role string
}
}
func NewDeveloper() *Developer {
return &Developer {
Name: "๐ต Misato ๐ต",
Communities: []string {
"SingularitySociety ๐",
"WomenWhoGo Tokyo ๐ฆซ",
"42 Tokyo ๐ฎ",
"Raycast Community Japan ๐ฆ",
},
Experiences: []string {
"System Development ๐ป",
"Infrastructure Management ๐ ๏ธ",
"BI & Data Operations ๐",
"Security Product Support ๐",
"Support Center Leadership ๐ฏ",
},
Hobbies: []string {
"Mountain Climbing ๐๏ธ",
"City Walking ๐ถโโ๏ธ",
"Knitting ๐งถ",
"Piano ๐น",
"Tennis ๐พ",
},
Cats: []struct {
Name string
Role string
}{
{ Name: "Nyan1-Go", Role: "Senior Bug Hunter ๐ฑ" },
{ Name: "Nyan2-Go", Role: "Chief Nap Officer ๐ฑ" },
},
}
}
๐ผ
Hello World!
Highlights
- Pro
Pinned Loading
-
-
-
-
graphai
graphai PublicForked from receptron/graphai
GraphAI is an asynchronous data flow execution engine, which allows developers to build agentic applications by describing agent workflows as declarative data flow graphs in YAML or JSON.
TypeScript
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.