timoni
This module has been generated via dagger init and serves as a reference to basic module structure as you get started with Dagger.Two functions have been pre-created. You can modify, delete, or add to them, as needed. They demonstrate usage of arguments and return types using simple echo and grep commands. The functions can be called from the dagger CLI or from one of the SDKs.
The first line in this comment block is a short description line and the rest is a long description with more detail on the module's purpose or usage, if appropriate. All modules should have a short description.
Installation
dagger install github.com/anthonybrice/daggerverse/timoni@ddeede5e813c595cb245feb5994575f390c90a72
Entrypoint
Return Type
Timoni
Example
dagger -m github.com/anthonybrice/daggerverse/timoni@ddeede5e813c595cb245feb5994575f390c90a72 call \
func (m *myModule) example() *Timoni {
return dag.
Timoni()
}
@function
def example() -> dag.Timoni:
return (
dag.timoni()
)
@func()
example(): Timoni {
return dag
.timoni()
}
Types
Timoni 🔗
vet() 🔗
timoni mod vet dir
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
dir | Directory ! | - | No description provided |
Example
dagger -m github.com/anthonybrice/daggerverse/timoni@ddeede5e813c595cb245feb5994575f390c90a72 call \
vet --dir DIR_PATH
func (m *myModule) example(ctx context.Context, dir *Directory) string {
return dag.
Timoni().
Vet(ctx, dir)
}
@function
async def example(dir: dagger.Directory) -> str:
return await (
dag.timoni()
.vet(dir)
)
@func()
async example(dir: Directory): Promise<string> {
return dag
.timoni()
.vet(dir)
}
modPush() 🔗
timoni mod push dir
url
–version=version
args...
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
dir | Directory ! | - | No description provided |
url | String ! | - | No description provided |
version | String ! | - | No description provided |
args | [String ! ] | - | No description provided |
Example
dagger -m github.com/anthonybrice/daggerverse/timoni@ddeede5e813c595cb245feb5994575f390c90a72 call \
mod-push --dir DIR_PATH --url string --version string
func (m *myModule) example(ctx context.Context, dir *Directory, url string, version string) string {
return dag.
Timoni().
ModPush(ctx, dir, url, version)
}
@function
async def example(dir: dagger.Directory, url: str, version: str) -> str:
return await (
dag.timoni()
.mod_push(dir, url, version)
)
@func()
async example(dir: Directory, url: string, version: string): Promise<string> {
return dag
.timoni()
.modPush(dir, url, version)
}