Skip to content

Instantly share code, notes, and snippets.

View oseifrimpong's full-sized avatar
🎯
Focus

Obed Osei Frimpong oseifrimpong

🎯
Focus
View GitHub Profile
import { PropTypes } from 'prop-types';
import React, { Component } from 'react';
import { View, Text, StyleSheet, Image, TouchableOpacity } from 'react-native';
// import { StackNavigator } from 'react-navigation';
// import SignUp from './SignUp';
const styles = StyleSheet.create({
container: {
flex: 1,
### Keybase proof
I hereby claim:
* I am oseifrimpong on github.
* I am obed3310 (https://keybase.io/obed3310) on keybase.
* I have a public key ASBOiwxvIMUwjqMgXXF0hxMmCEAbzVWQS5abNT3DUPhrMAo
To claim this, I am signing this object:
@oseifrimpong
oseifrimpong / folder_structure.md
Created September 28, 2023 14:57 — forked from ayoubzulfiqar/folder_structure.md
The Folder Structure for Every Golang Project

Go - The Ultimate Folder Structure

Organizing your Go (Golang) project's folder structure can help improve code readability, maintainability, and scalability. While there is no one-size-fits-all structure, here's a common folder structure for a Go project:

project-root/
    ├── cmd/
    │   ├── your-app-name/
    │   │   ├── main.go         # Application entry point
    │   │   └── ...             # Other application-specific files