blob: dc318639115fdf24fce5959747ef76cb99af67e3 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package codegen
const structTmpl = `
{{- define "StructDefinition" -}}
{{ .Name }} {
{{- range .Members }}
{{ .Name }} {{ .Type }}
{{- end }}
} [packed]
{{- end -}}
`