sindri-dev
A generated module for Sindri functions
Installation
dagger install github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168
Entrypoint
Return Type
SindriDev !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory | - | No description provided |
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
func (m *MyModule) Example() *dagger.SindriDev {
return dag.
SindriDev()
}
@function
def example() -> dagger.SindriDev:
return (
dag.sindri_dev()
)
@func()
example(): SindriDev {
return dag
.sindriDev()
}
Types
SindriDev 🔗
source() 🔗
Return Type
Directory !
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
source
func (m *MyModule) Example() *dagger.Directory {
return dag.
SindriDev().
Source()
}
@function
def example() -> dagger.Directory:
return (
dag.sindri_dev()
.source()
)
@func()
example(): Directory {
return dag
.sindriDev()
.source()
}
container() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
module | String | "steamapps" | No description provided |
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
container
func (m *MyModule) Example() *dagger.Container {
return dag.
SindriDev().
Container()
}
@function
def example() -> dagger.Container:
return (
dag.sindri_dev()
.container()
)
@func()
example(): Container {
return dag
.sindriDev()
.container()
}
service() 🔗
Return Type
Service !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
hostname | String | "localhost" | No description provided |
module | String | "steamapps" | No description provided |
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
service
func (m *MyModule) Example() *dagger.Service {
return dag.
SindriDev().
Service()
}
@function
def example() -> dagger.Service:
return (
dag.sindri_dev()
.service()
)
@func()
example(): Service {
return dag
.sindriDev()
.service()
}
test() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
module | String | "steamapps" | No description provided |
repository | [String ! ] | ["valheim","corekeeper"] | No description provided |
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
test
func (m *MyModule) Example() *dagger.Container {
return dag.
SindriDev().
Test()
}
@function
def example() -> dagger.Container:
return (
dag.sindri_dev()
.test()
)
@func()
example(): Container {
return dag
.sindriDev()
.test()
}
version() 🔗
Return Type
String !
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
version
func (m *MyModule) Example(ctx context.Context) string {
return dag.
SindriDev().
Version(ctx)
}
@function
async def example() -> str:
return await (
dag.sindri_dev()
.version()
)
@func()
async example(): Promise<string> {
return dag
.sindriDev()
.version()
}
binary() 🔗
Return Type
File !
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
binary
func (m *MyModule) Example() *dagger.File {
return dag.
SindriDev().
Binary()
}
@function
def example() -> dagger.File:
return (
dag.sindri_dev()
.binary()
)
@func()
example(): File {
return dag
.sindriDev()
.binary()
}
coder() 🔗
Return Type
LLM !
Example
dagger -m github.com/frantjc/sindri@0fdbdd01f4475c14d727f77d1454c862c0678168 call \
coder
func (m *MyModule) Example() *dagger.LLM {
return dag.
SindriDev().
Coder()
}
@function
def example() -> dagger.LLM:
return (
dag.sindri_dev()
.coder()
)
@func()
example(): LLM {
return dag
.sindriDev()
.coder()
}