10 lines
112 B
Plaintext
10 lines
112 B
Plaintext
|
package testmethod
|
||
|
|
||
|
type Data struct {
|
||
|
message string
|
||
|
}
|
||
|
|
||
|
templ (d Data) Method() {
|
||
|
<div>{ d.message }</div>
|
||
|
}
|