-
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathxmlSchema.go
More file actions
18 lines (15 loc) · 621 Bytes
/
Copy pathxmlSchema.go
File metadata and controls
18 lines (15 loc) · 621 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2020 - 2026 The xgen 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 xgen written in pure Go providing a set of functions that allow you
// to parse XSD (XML schema files). This library needs Go version 1.25.0 or
// later.
package xgen
import "encoding/xml"
// OnSchema handles parsing event on the schema start elements. Schema is the
// root element of every XML Schema.
func (opt *Options) OnSchema(ele xml.StartElement, protoTree []interface{}) (err error) {
opt.prepareLocalNameNSMap(ele)
return
}