godot
No long description provided.
Installation
dagger install github.com/vrunoa/daggerverse/godot@7a4698467f0a41258aa9ac5aee9e844f1faad704Entrypoint
Return Type
GodotExample
dagger -m github.com/vrunoa/daggerverse/godot@7a4698467f0a41258aa9ac5aee9e844f1faad704 call \
func (m *MyModule) Example() *dagger.Godot  {
	return dag.
			Godot()
}@function
def example() -> dagger.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@7a4698467f0a41258aa9ac5aee9e844f1faad704 call \
 gut --src DIR_PATH --test-path stringfunc (m *MyModule) Example(src *dagger.Directory, testPath string) *dagger.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)
}