This commit is contained in:
Waradu 2023-10-31 11:18:37 +01:00
parent 0e53a4799f
commit 4aa33b6572
2 changed files with 23 additions and 0 deletions

11
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"hide-files.files": []
}

12
frames/test.go Normal file
View file

@ -0,0 +1,12 @@
package frames
var Test = DefaultFrameType(TestFrames)
var TestFrames = []string{
`
Test
`,
`
Test 2
`,
}