This commit is contained in:
Insub Kim 2025-06-05 01:35:23 +00:00
parent d41b80d734
commit c4dbb82935
2 changed files with 12 additions and 1 deletions

View File

@ -1,2 +1,3 @@
<h1>Welcome to SvelteKit</h1> <h1>안녕하세요</h1>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p> <p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
d

10
src/routes/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('stage 1') {
steps {
echo "Hello world"
}
}
}
}