Dagger
Search

drupal

No long description provided.

Installation

dagger install github.com/jpadams/daggerverse/drupal@e5470174bfd86b9858dd5fd3db381835b579a5b4

Entrypoint

Return Type
Drupal
Example
func (m *myModule) example() *Drupal  {
	return dag.
			Drupal()
}
@function
def example() -> dag.Drupal:
	return (
		dag.drupal()
	)
@func()
example(): Drupal {
	return dag
		.drupal()
}

Types

Drupal 🔗

base() 🔗

Return Type
Container !
Example
Function Drupal.base is not accessible from the drupal module
func (m *myModule) example()   {
	return dag.
			Drupal().
			Base()
}
@function
def example() -> :
	return (
		dag.drupal()
		.base()
	)
@func()
example():  {
	return dag
		.drupal()
		.base()
}