mirror of
https://github.com/tursom/GoCollections.git
synced 2025-01-31 02:50:13 +08:00
9 lines
314 B
Python
9 lines
314 B
Python
# Copyright (c) 2022 tursom. All rights reserved.
|
|
# Use of this source code is governed by a GPL-3
|
|
# license that can be found in the LICENSE file.
|
|
|
|
import types_generator
|
|
|
|
for type in ["int", "int8", "int16", "int32", "int64", "uint", "uint8", "uint16", "uint32", "uint64"]:
|
|
types_generator.generate(type)
|