mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-19 21:59:17 +02:00
12 lines
180 B
Plaintext
12 lines
180 B
Plaintext
|
#!/usr/bin/python
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
path = os.path.join('@libdir@', 'gdbus-codegen')
|
||
|
sys.path.insert(0, path)
|
||
|
|
||
|
from codegen_main import codegen_main
|
||
|
|
||
|
sys.exit(codegen_main())
|