# wails-plugin-sqlite **Repository Path**: ArtfulCoder/wails-plugin-sqlite ## Basic Information - **Project Name**: wails-plugin-sqlite - **Description**: No description available - **Primary Language**: Go - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-24 - **Last Updated**: 2025-07-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # sqlite Plugin This example plugin provides a way to generate hashes of strings. ## Installation Add the plugin to the `Services` option in the Applications options: ```go Services: []application.Service{ application.NewService(sqlite.NewPlugin()), }, ``` ## Usage You can then call the methods from the frontend: ```js wails.Plugin("sqlite","All","hello world").then((result) => console.log(result)) ``` This method returns a struct with the following fields: ```typescript interface Hashes { MD5: string; SHA1: string; SHA256: string; } ``` A TypeScript definition file is provided for this interface. ## Support If you find a bug in this plugin, please raise a ticket [here](https://github.com/plugin/repository). Please do not contact the Wails team for support.