may-the-fourth
MayTheFourth will turn your webpage into a Jedi koan
Installation
dagger install github.com/jpadams/may-the-fourth@daa9dfc8679443305691aa6096bc3a8132617fd1
Entrypoint
Return Type
MayTheFourth
Example
dagger -m github.com/jpadams/may-the-fourth@daa9dfc8679443305691aa6096bc3a8132617fd1 call \
func (m *MyModule) Example() *dagger.MayTheFourth {
return dag.
MayTheFourth()
}
@function
def example() -> dagger.MayTheFourth:
return (
dag.may_the_fourth()
)
@func()
example(): MayTheFourth {
return dag
.mayTheFourth()
}
Types
MayTheFourth 🔗
enlighten() 🔗
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
url | String ! | - | No description provided |
Example
dagger -m github.com/jpadams/may-the-fourth@daa9dfc8679443305691aa6096bc3a8132617fd1 call \
enlighten --url string
func (m *MyModule) Example(ctx context.Context, url string) string {
return dag.
MayTheFourth().
Enlighten(ctx, url)
}
@function
async def example(url: str) -> str:
return await (
dag.may_the_fourth()
.enlighten(url)
)
@func()
async example(url: string): Promise<string> {
return dag
.mayTheFourth()
.enlighten(url)
}