Dagger
Search

bass-sdk

Bass is a Dagger SDK for the Bass scripting language (https://bass-lang.org).

Installation

dagger install github.com/vito/daggerverse/bass@a11281b0a5c749562a11dc8ce6c364ed9933366d

Entrypoint

Return Type
BassSdk !
Example
func (m *myModule) example() *BassSdk  {
	return dag.
			BassSdk()
}
@function
def example() -> dag.BassSdk:
	return (
		dag.bass_sdk()
	)
@func()
example(): BassSdk {
	return dag
		.bassSdk()
}

Types

BassSdk

requiredPaths()

Return Type
[String ! ] !
Example
dagger -m github.com/vito/daggerverse/bass@a11281b0a5c749562a11dc8ce6c364ed9933366d call \
 required-paths
func (m *myModule) example(ctx context.Context) []string  {
	return dag.
			BassSdk().
			RequiredPaths(ctx)
}
@function
async def example() -> List[str]:
	return await (
		dag.bass_sdk()
		.required_paths()
	)
@func()
async example(): Promise<string[]> {
	return dag
		.bassSdk()
		.requiredPaths()
}

moduleRuntime()

ModuleRuntime returns a container with the node entrypoint ready to be called.

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
modSourceModuleSource !-No description provided
introspectionJsonString !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson string) *Container  {
	return dag.
			BassSdk().
			ModuleRuntime(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: str) -> dagger.Container:
	return (
		dag.bass_sdk()
		.module_runtime(mod_source, introspection_json)
	)
@func()
example(modSource: ModuleSource, introspectionJson: string): Container {
	return dag
		.bassSdk()
		.moduleRuntime(modSource, introspectionJson)
}

codegen()

Codegen returns the generated API client based on user’s module

Return Type
GeneratedCode !
Arguments
NameTypeDefault ValueDescription
modSourceModuleSource !-No description provided
introspectionJsonString !-No description provided
Example
Function BassSdk.codegen is not accessible from the bass-sdk module
func (m *myModule) example(modSource *ModuleSource, introspectionJson string) *GeneratedCode  {
	return dag.
			BassSdk().
			Codegen(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: str) -> dag.GeneratedCode:
	return (
		dag.bass_sdk()
		.codegen(mod_source, introspection_json)
	)
@func()
example(modSource: ModuleSource, introspectionJson: string): GeneratedCode {
	return dag
		.bassSdk()
		.codegen(modSource, introspectionJson)
}

codegenBase()

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
modSourceModuleSource !-No description provided
introspectionJsonString !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(modSource *ModuleSource, introspectionJson string) *Container  {
	return dag.
			BassSdk().
			CodegenBase(modSource, introspectionJson)
}
@function
def example(mod_source: dag.ModuleSource, introspection_json: str) -> dagger.Container:
	return (
		dag.bass_sdk()
		.codegen_base(mod_source, introspection_json)
	)
@func()
example(modSource: ModuleSource, introspectionJson: string): Container {
	return dag
		.bassSdk()
		.codegenBase(modSource, introspectionJson)
}

base()

Return Type
Container !
Example
dagger -m github.com/vito/daggerverse/bass@a11281b0a5c749562a11dc8ce6c364ed9933366d call \
 base
func (m *myModule) example() *Container  {
	return dag.
			BassSdk().
			Base()
}
@function
def example() -> dagger.Container:
	return (
		dag.bass_sdk()
		.base()
	)
@func()
example(): Container {
	return dag
		.bassSdk()
		.base()
}

entrypoint()

Return Type
File !
Example
dagger -m github.com/vito/daggerverse/bass@a11281b0a5c749562a11dc8ce6c364ed9933366d call \
 entrypoint
func (m *myModule) example() *File  {
	return dag.
			BassSdk().
			Entrypoint()
}
@function
def example() -> dagger.File:
	return (
		dag.bass_sdk()
		.entrypoint()
	)
@func()
example(): File {
	return dag
		.bassSdk()
		.entrypoint()
}