godot
No long description provided.
Installation
dagger install github.com/vrunoa/daggerverse/godot@ac770ab2e60485fe0cf62526cba4f364c33e8e98
Entrypoint
Return Type
Godot
Example
dagger -m github.com/vrunoa/daggerverse/godot@ac770ab2e60485fe0cf62526cba4f364c33e8e98 call \
func (m *myModule) example() *Godot {
return dag.
Godot()
}
@function
def example() -> dag.Godot:
return (
dag.godot()
)
@func()
example(): Godot {
return dag
.godot()
}
Types
Godot 🔗
gut() 🔗
Test running godot unit tests with Gut
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory ! | - | No description provided |
testPath | String ! | - | No description provided |
Example
dagger -m github.com/vrunoa/daggerverse/godot@ac770ab2e60485fe0cf62526cba4f364c33e8e98 call \
gut --src DIR_PATH --test-path string
func (m *myModule) example(src *Directory, testPath string) *File {
return dag.
Godot().
Gut(src, testPath)
}
@function
def example(src: dagger.Directory, test_path: str) -> dagger.File:
return (
dag.godot()
.gut(src, test_path)
)
@func()
example(src: Directory, testPath: string): File {
return dag
.godot()
.gut(src, testPath)
}