Dagger
Search

GetIp

No long description provided.

Installation

dagger install github.com/levlaz/daggerverse/get-ip@1e554f7250c8a41f88a88efbe7a9e736d3cd4105

Entrypoint

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

Types

GetIp 🔗

ctr() 🔗

Return Type
Container !
Example
Function GetIp.Ctr is not accessible from the GetIp module
func (m *myModule) example()   {
	return dag.
			GetIp().
			Ctr()
}
@function
def example() -> :
	return (
		dag.get_ip()
		.ctr()
	)
@func()
example():  {
	return dag
		.getIp()
		.ctr()
}

run() 🔗

Return Type
Container !
Example
Function GetIp.run is not accessible from the GetIp module
func (m *myModule) example()   {
	return dag.
			GetIp().
			Run()
}
@function
def example() -> :
	return (
		dag.get_ip()
		.run()
	)
@func()
example():  {
	return dag
		.getIp()
		.run()
}