1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/scripting/python/python.c
2022-01-29 12:21:13 +01:00

26 lines
505 B
C

/* Python module */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "scripting/python/pythoninc.h"
#include "elinks.h"
#include "intl/libintl.h"
#include "main/module.h"
#include "scripting/python/core.h"
#include "scripting/python/hooks.h"
struct module python_scripting_module = struct_module(
/* name: */ N_("Python"),
/* options: */ NULL,
/* hooks: */ python_scripting_hooks,
/* submodules: */ NULL,
/* data: */ NULL,
/* init: */ init_python,
/* done: */ cleanup_python
);