Skip to content

Commit

Permalink
Merge pull request #132 from gofr-dev/add-nats
Browse files Browse the repository at this point in the history
Add route for nats import
  • Loading branch information
aryanmehrotra authored Dec 9, 2024
2 parents dd41846 + a402a09 commit 0352639
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/pkg/gofr/datasource/pubsub/nats/layout.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export const metadata = {
other: {
'go-import': 'gofr.dev git https://github.com/gofr-dev/gofr',
'go-source':
'gofr.dev https://github.com/gofr-dev/gofr https://github.com/gofr-dev/gofr/tree/main{/dir} https://github.com/gofr-dev/gofr/blob/main{/dir}/{file}#L{line}',
},
}

export default function RootLayout({ children }) {
return children
}
16 changes: 16 additions & 0 deletions src/app/pkg/gofr/datasource/pubsub/nats/page.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';


const Page = () => {
return (
<div className={`flex justify-center items-center min-h-[70vh]`}>
<div className={`text-4xl font-semibold flex gap-3 flex-wrap justify-center`}>
<span>
</span>
<span className={`text-sky-400`}></span>
</div>
</div>
);
};

export default Page;

0 comments on commit 0352639

Please sign in to comment.