drupal
No long description provided.
Installation
dagger install github.com/jpadams/daggerverse/drupal@79a0f534aaf530f19d775a6e71d90910ce995768Entrypoint
Return Type
DrupalExample
dagger -m github.com/jpadams/daggerverse/drupal@79a0f534aaf530f19d775a6e71d90910ce995768 call \
func (m *MyModule) Example() *dagger.Drupal  {
	return dag.
			Drupal()
}@function
def example() -> dagger.Drupal:
	return (
		dag.drupal()
	)@func()
example(): Drupal {
	return dag
		.drupal()
}Types
Drupal 🔗
base() 🔗
Return Type
Container !Example
dagger -m github.com/jpadams/daggerverse/drupal@79a0f534aaf530f19d775a6e71d90910ce995768 call \
 basefunc (m *MyModule) Example() *dagger.Container  {
	return dag.
			Drupal().
			Base()
}@function
def example() -> dagger.Container:
	return (
		dag.drupal()
		.base()
	)@func()
example(): Container {
	return dag
		.drupal()
		.base()
}