1
0

Initial template import

This commit is contained in:
ProcessGit Templates
2026-02-05 21:19:44 +00:00
commit 75e3a05d36
15 changed files with 1177 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
-- Placeholder database schema for {{.RepoName}}
CREATE TABLE IF NOT EXISTS example_table (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL
);

View File

@@ -0,0 +1,11 @@
openapi: 3.0.0
info:
title: {{.RepoName}} REST Connector
version: 0.1.0
paths:
/health:
get:
summary: Health check
responses:
'200':
description: ok

View File

@@ -0,0 +1,35 @@
<?xml version="1.0"?>
<definitions name="{{.RepoName}}Service"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="https://processgit.org/wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/"
targetNamespace="https://processgit.org/wsdl">
<message name="PingRequest"/>
<message name="PingResponse">
<part name="message" type="xsd:string"/>
</message>
<portType name="PingPortType">
<operation name="Ping">
<input message="tns:PingRequest"/>
<output message="tns:PingResponse"/>
</operation>
</portType>
<binding name="PingBinding" type="tns:PingPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="Ping">
<soap:operation soapAction="ping"/>
<input><soap:body use="literal"/></input>
<output><soap:body use="literal"/></output>
</operation>
</binding>
<service name="{{.RepoName}}Service">
<port name="PingPort" binding="tns:PingBinding">
<soap:address location="https://example.com/soap"/>
</port>
</service>
</definitions>